ProtoLayer.prototype.fadeIn = ProtoLayerFadeIn

function ProtoLayerFadeIn(dur){
	if(typeof this.css.filter=='string'){
		this.css.filter='blendTrans(duration='+dur+')';
		this.ref.filters[0].Apply();
		this.ref.filters[0].Play();
	}
	this.inherit();
}