/* Copyright (c) Fluid Creativity, 2007 */

var fixpngs = function() {
	if (/MSIE (5.5|6.)/.test(navigator.userAgent)) {
		$$('.png').each(function(el){
			var pos = el.getCoordinates();
			el.setStyles({
				/*width: pos.width,
				height: pos.height,*/
				background: '',
				filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + el.getStyle('backgroundImage').substring(5, el.getStyle('backgroundImage').length - 2) + "', sizingMethod='crop')"
			}).addEvent('propertychange', function(){
				if (window.event.propertyName == "style.backgroundImage") {
					var el = $(window.event.srcElement);
					if (el.hasClass('png')) {
						el.filters.item(0).src = el.getStyle('backgroundImage').substring(5, el.getStyle('backgroundImage').length - 2);
					}
				}
			});
		});
	}
}

window.addEvent('domready', fixpngs);
