$(document).ready(function(){
	function thepngfix(){
		if ($.browser.msie && parseFloat(navigator.userAgent.toLowerCase().substr(navigator.userAgent.toLowerCase().indexOf('msie')+5, 3))<7) {
			$("img[src$='.png']").each(function() {
				var w = ($(this).attr("width"))? parseInt($(this).attr("width")):$(this).width();
				var h = ($(this).attr("height"))? parseInt($(this).attr("height")):$(this).height();
				w = (w==0)? 16:w;
				h = (h==0)? 16:h;
				$(this).css({filter : "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + $(this).attr('src') + "', sizingMethod='scale')"}).attr({src : '../img/blank.gif'}).width(w).height(h);
			});
		}
	}
	
	thepngfix();
});