﻿.png,.bg.bodyguard {
	_behavior:expression((function () {
		window.__isPng=window.__isPng || function (src) { return src.toLowerCase().indexOf('.png')>-1; };
		this.runtimeStyle.behavior="none";
		var pngSource,sizingMethod;
		if (this.nodeName.toLowerCase()=="img" && window.__isPng(this.src)) {
			pngSource=this.src;
			sizingMethod="image";
			this.src="http://clients.mantis.co.il/meyeden/big_site/images/newSite/transparent.gif";
		} else if (window.__isPng(this.currentStyle.backgroundImage)) {
			pngSource=this.currentStyle.backgroundImage.replace('u'+'rl("','').replace('")','');
			sizingMethod=this.currentStyle.backgroundRepeat=="no-repeat" ? "crop" : "scale";
			this.runtimeStyle.backgroundImage="none";
		}
		if (pngSource) this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImage"+"Loader(src='"+pngSource+"', sizingMethod='"+sizingMethod+"')";
	}).call(this));
}