$(function(){
	setFooter(); 
	function setFooter(){
		var winHeight, cntHeight;
		winHeight = $(window).height(); 
		cntHeight = $(".content").height()+247;
		if (winHeight < cntHeight) { oHeight = cntHeight;} else {oHeight = winHeight;}
		$("#page").height(oHeight);
	}
});
