/*
Alpha PNG support for IE

Self-removing expression trick from: http://dean.edwards.name/my/misbehaviors/
OnAfterPrint doesn't seem worth the trouble; PNGs will look buggy after printing
because IE has buggy PNG support.
\*/
* html img/**/ {
	filter:expression(
			this.napalmLoaded
			? "" :
			(
				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.napalmLoaded=true).substr(0,0)+
						(this.src=env.applicationPath + "/images/pix.gif").substr(0,0)
				)
				:
				this.runtimeStyle.filter=""
			)
		);
}