// reset.js

// applying png-fix in ie6 only
$(document).ready(function() {
	if($.browser.msie && parseInt($.browser.version) < 7) {
		$.ifixpng('fileadmin/web/images/common/void.gif'); 
		$('.pngfix').ifixpng();
	}
	
	// no background-flickering in ie6
	try {
		document.execCommand('BackgroundImageCache', false, true);
	} catch(err) {};
});