// JavaScript Document

function applyPNGFix() {
	var supported;
	supported = /MSIE [6]/.test(navigator.userAgent) && navigator.platform == "Win32";
	
	if(supported)
	{
		document.styleSheets[0].addRule(".pngFix","behavior:url(/layout/home/css/iepngfix.htc)");
	}
}

applyPNGFix();
