if ( navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer" && (navigator.appVersion.match(/MSIE (\d+\.\d+)/, ''))[1] >= 5.5 &&  window.attachEvent ) {
	window.attachEvent("onload", fnLoadPngs);
}

function fnLoadPngs() {
	for (var i = 0; i < document.images.length ; i++ ) {

		img = document.images[i];

		if (img.src.match(/\.png$/i) != null) {
			img.style.width = img.width + "px";
			img.style.height = img.height + "px";
			img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + img.src + "', sizingMethod='scale')"
			img.src = img.src;
			img.src = "http://www.nestbox.dk/gfx/x.gif";
		}
	}
}
