$(function(){
	setWindowSize();
});

function setWindowSize(){
	var setHeight = $("body").height();
	$("#wrapper").css('height',setHeight);
}

$(window).resize(function() {
	setWindowSize();
}); 
