$j(document).ready(function() {
    
    var hLeft = $j('.r3 .d1').height() + $j('.r4 .d1').height();    //
   var hCon = $j('.r3 .d2').height();                          //
    var wCon = $j('.r3 .d2').width();                  //
    var Content = $j('.r3 .d2');    //.p2 
    var smContent = $j('.r3 .d2 .p1');                           //
    if (Content.height() < hLeft) { Content.height(hCon) }      //
    
    //OPERA browser
    if ($j.browser.opera) {
        $j('.r3 .d3 .B').css({ top:$j('.r3 .d3').height()-10 });
    }
    
    //MOZILLA browser
    if ($j.browser.mozilla) { 
      
    }
    
    //IE browsers
    if ($j.browser.msie) {
        Content.height( Content.height());                           
    }
    
    //IE 6.0 browser
    if (($j.browser.msie)&&($j.browser.version == '6.0')) {
        
    }
    
    //IE 7.0 browser
    if (($j.browser.msie)&&($j.browser.version == '7.0')) {
    }
    
});

 
