$(document).ready(function() {
	tmpheight1 = $("#home-left").height();
	tmpheight2 = $("#home-right").height();
	//console.log("1 - "+tmpheight1);
	//console.log("2 - "+tmpheight2);
	//console.log("3 - "+tmpheight3);
	maxheight = Math.max(tmpheight1, tmpheight2);
	$("#home-left").height(maxheight);
	$("#home-right").height(maxheight);
	
	var winheight = $("body").height();
    var winwidth = $("body").width();
	$("#overlay").show().height(winheight);
	$("#lowprice").show().css('left',winwidth/2-100).css('top','100px');
	
	$("#closebtn2").click(function() {
		$.cookie('ie6alert', '0', { expires: 2 });
		$("#ie6error").fadeOut(1000);
	});
});



function closelowprice() {
	$.cookie('todaylowprice', '0', { expires: 1 });
	$("#overlay").hide();
	$("#lowprice").fadeOut(2000);
}