// PNG fix
	$(document).ready(function(){
		// apply to all images
		$('img[@src$=.png]').ifixpng(); 
		// apply to target elements
		$('img[@src$=.png], div#header').ifixpng();
	});
	


