$(document).ready(function(){
       
	   
	   
       try{        
     						leftDivH = $('.bottom_left .testimonials').height();
							rightDivH = $('.bottom_right .welcome').height();
							
							if (leftDivH > rightDivH){
								$('.bottom_left .testimonials').height(rightDivH);
							} else {
								$('.bottom_right .welcome').height(leftDivH);
							} 
       
       }catch(e){
        
       }
       
         });
