$(function(){
	
var threeColHt = [];
	$('.teaseContents').each(function(){
		threeColHt.push($(this).height());
	});
	threeColHt.sort(function(a,b){return a - b})
	$('.teaseContents').height(threeColHt[2]);
	
	if (jQuery.browser.msie && (jQuery.browser.version < 7)) {
            $("#nav li").hover(function(){
            	$(this).addClass("hover");
            },function(){
            	$(this).removeClass("hover");
            });
        } 


});

$(window).load(function(){
	


});
