// reset.js

// applying png-fix in ie6 only
$(document).ready(function() {
	if($.browser.msie && parseInt($.browser.version) < 7) {
		$('img[@src$=.png], .pngfix').ifixpng('fileadmin/web/images/common/transparent.gif');
		
		$('#content .box_small dt').ifixpng('fileadmin/web/images/common/transparent.gif');
	}
	
	// no background-flickering in ie6
	try {
		document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {};
});