/*
 *	Projeto:	Projetos Impera
 *	Descrição:	Para correção de problemas com png no IE6
 *	Autor: 		Impera Developer Team
 *	Data: 		22/11/07
 */


/* 
Alpha PNG support for IE 
------------------------------ 
\*/  
* html img/**/ {  
	filter:expression(  
	this.alphaxLoaded ? "" :
		(this.src.substr(this.src.length-4)==".png"?((!this.complete)? "" :
			this.runtimeStyle.filter=("progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+this.src+"')")+(this.onbeforeprint="this.runtimeStyle.filter='';this.src='"+this.src+"'").substr(0,0)+  
			String(this.alphaxLoaded=true).substr(0,0)+  
			(this.src="../imagens/teste.png").substr(0,0)  
):this.runtimeStyle.filter=""));  
}  
