
function adjustCSSForFirefoxLessThan3() {
    if (Prototype.Browser.Gecko) {
        var m = /Firefox.(\d)/.exec(navigator.userAgent);
        var v=1000;
        if (m.length==2) 
            v=Number(m[1]);
        if (v<3) {
            var css = $('linkStyleProductBlock').sheet;
            css.insertRule('DIV.productBlock {display: inline}', 0);
            css.insertRule('DIV.productBlock TABLE {display: table-cell}', 0);    
            css.insertRule('DIV.productBlock TABLE TR.pbName TD SPAN {width: 100%}', 0);    
        }
    }
}

//adjustCSSForFirefoxLessThan3();
adjustCSSForFirefoxLessThan3.defer(1500);