if(navigator.userAgent.toLowerCase().indexOf('msie')>0){ // detect for IE (could be more specific to PC and version, but this works for the test)
	imagesSrc = document.getElementsByTagName('IMG'); // get all images
	for(x=0; x<imagesSrc.length; x++){ // cycle through those images
		if(imagesSrc[x].src.indexOf('.png') != -1){ // only do this to png files
			imagesSrc[x].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+imagesSrc[x].src+"', sizingMethod='scale')"; // apply the filter stuff that makes IE do it's magic
			imagesSrc[x].src = "images/HS_clear.gif"; // replace the image with a clear gif so that the filter can show through
		}
	}
}