$(document).ready(function(){		// fix png images for IE6 browsers	if ($.browser.msie) {		fix_all_png();	}	});function fix_all_png() {			// Fix background images on all A elements,	// all header elements, and all TD elements	$("a, h1, h2, h3, h4, h5, h6, table td").pngfix();		// Fix all inline PNG images with the custom sizingMethod of "scale"	$("img[@src$=png]").pngfix({		sizingMethod: "scale"	});		// $.miseAlphaImageLoader("sdsd");	};
