$(document).ready(function() {
	var sloganHeight = 0;
	sloganHeight += $("#product h1").height();
	sloganHeight += $("#product .s1").height();
	sloganHeight += $("#product .s2").height();		
	
	var newHeight = (198-sloganHeight)/2;
	
	$("#product").css("bottom",newHeight+"px");
	
	if($.browser.msie) {
		$("#footer").css("position","relative");
		$("#footer").css("bottom","70px");
	}
});
