var agt=navigator.userAgent.toLowerCase();
window.ie55up = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
function fixPNG(myImage) {
	if (window.ie55up) {
		var imgID = (myImage.id) ? "id='" + img.id + "' " : "";
		var imgClass = (myImage.className) ? "class='" + myImage.className + "' " : "";
		var imgTitle = (myImage.title) ? "title='" + myImage.title + "' " : "title='" + myImage.alt + "' ";
		var imgStyle = "display:inline-block;" + myImage.style.cssText ;
		var strNewHTML = "<span " + imgID + imgClass + imgTitle;
		strNewHTML += " style=\"" + "width:" + myImage.width + "px; height:" + myImage.height + "px;" + imgStyle + "; font-size: 1px;";
		strNewHTML += "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader";
		strNewHTML += "(src=\'" + myImage.src + "\', sizingMethod='scale');\"></span>" ;
		myImage.outerHTML = strNewHTML;
//		alert(strNewHTML);
	}
}

function fixPNGbg(myObject) {
	alert(myObject);
	if (window.ie55up) {
//		myObject.style.
	}
}