$(document).ready(function() {

	var pageheight = $(".page").height();
	var bodyheight = $("body").height();
	var contentheight = $("#content").height();
	var footergap = bodyheight - contentheight;
	
	//alert(bodyheight);
	//alert(contentheight);
	
	
	
	if(footergap > 50) {
		ph = bodyheight - 180 + "px";
		$(".page").height(ph);
		if($.browser.msie && $.browser.version == "6.0"){
			$("#products .page").css("height","auto");
		}	
	}
	
	 $('.data tr>th:last-child').css("background-color","#C4013B");
	 $('.data tr>td:last-child').css("background-color","#FFEBDE");
	 //$('.data tr>td:first-child').css("background-color","#D8D8D8");
	$('#content .packing a.pack:last-child').css("margin-right","0px");
	$('#content .related .block:last-child').css("margin-right","0px");
	
});
		
