function inc(fname){
	var body = document.getElementsByTagName('head').item(0);
	script = document.createElement('script');
	script.src = fname;
	script.type = 'text/javascript';
	body.appendChild(script)
}

temp=navigator.appVersion.split('MSIE');
ieVer=parseInt(temp[1]);

if (ieVer == 6){
	$(document).ready(function(){
		inc('js/pngfix.js');
		correctPNG();
	});
}
