
$(document).ready(function () {	

	var setlayout = function(){
		windowWidth = $(window).width();
		windowHeight = $(document).height();
		$('#content').css({'height':windowHeight - 80});
	}
	setlayout();
	$(window).resize(function() {
		setlayout();
	});

	
});	
