$(document).ready(function(){
	var windowHeight = $(window).height();
	var bodyHeight = $('body').height();
	var pageBodyHeight = $('#content').height();
	var differential = (windowHeight-bodyHeight);
	if(differential > 0)$('#content').height(differential + pageBodyHeight);
});
