if($.browser.msie && $.browser.version<7){
cssHacker.prototype._cssPngFix=function(c){
	 this.context=c;
};
cssHacker.prototype._cssPngFix.prototype.parseData=function(selector){
    if(/(MSIE (5|6))/.test(navigator.userAgent)){
	    var select=this.context.currentSelectorData, style="",url="";
	    for (var value in selector.properties.values){
	        if(/^background/i.test(value))
	            (url=selector.properties.values[value].match(/url\(\s*("|')?(.*?\-trans\.png)("|')?\s*\)/i))==null?url="":url=url[2];
	        else
	            style+=value+":"+selector.properties.values[value]+";";
	    }
	    if(url=="")return;
	    var l = this.context.currentSheet.url;
	    if(!l)l=window.location.href;
        url=(url.indexOf("://")==-1?(url.indexOf("/",0)==0?l.substr(0, l.indexOf("/",7)):l.substr(0, l.lastIndexOf("/")+1)):"")+url;
	    style+="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop src='"+url+"');background-image: none;";
	    this.context._replaceRule(select, style);
	}
};
hackerCss._parser = new CSSParser(document);
hackerCss.parseStylesheets("_cssPngFix");
}

