$(function(){
	positionFooter(); 
	function positionFooter(){
		if($(document.body).height() < $(window).height()){
			$("#footer").css({position: "absolute",top:($(document).height()-$("#footer").height()+75)+"px"})
		}	
	}
 
	$(document.body)
		.resize(positionFooter)
});
