$(document).ready(function(){
    if ($.browser.msie && $.browser.version <= 6 ) {
        //alert('Details: ' + $('table.product_detail td div.details').height() + 'px; BigPhoto: ' + $('table.product_detail td div.big_photo').height() + 'px');
        if ($('table.product_detail td div.details').height() < $('table.product_detail td div.big_photo').height()) $('table.product_detail td div.details').css('height', $('table.product_detail td div.big_photo').height() + "px");
        if ($('div.rightmenu').height() > $('div#content div#inner').height()) $('div#content div#inner').css('height',$('div.rightmenu').height() + 'px');
    }
}); 