$(document).ready(function(){
						   
		function  compareBoxes(){
			var p_height= $(document).find("#teaserBox").height();
			var p_height_t= $(document).find("#teaserBox2").height();

			if(p_height>p_height_t){
			$(document).find("#teaserBox2").css({height:""+p_height+""});
			$(document).find("#teaserBox2").height(p_height);
			}
			
			if(p_height<p_height_t){
			$(document).find("#teaserBox").css({height:""+p_height_t+""});
			$(document).find("#teaserBox").height(p_height_t);
			}
			
			return false;
			
			}
		
		compareBoxes();
		
});

