function correctPNG(){
	$$('img.fixpng').each( function(e){
		var imgID = (e.id) ? "id='" + e.id + "' " : "";
		var imgClass = (e.className) ? "class='" + e.className + "' " : "";
		var imgTitle = (e.title) ? "title='" + e.title + "' " : "title='" + e.alt + "' ";
		var imgStyle = "display:inline-block;" + e.style.cssText;
		if (e.align == "left") imgStyle = "float:left;" + imgStyle;
		if (e.align == "right") imgStyle = "float:right;" + imgStyle;
		var strNewHTML = "<span " + imgID + imgClass + imgTitle	+ " style=\"" + "width:" + e.width + "px; height:" + e.height + "px; "+"line-height:" + e.height + "px;" + imgStyle + ";" + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"	+ "(src=\'" + e.src + "\', sizingMethod='scale');\"></span>";
		e.outerHTML = strNewHTML;
	});
}
if(navigator.appVersion.indexOf("MSIE 6.0")!=-1){
	Event.observe(window,'load',correctPNG);
}