jQuery(document).ready(function($) {
	// Stuff to do as soon as the DOM is ready
	
	$(window).resize(function() {
		// var padding = $('#header').height() + $('#footer-grass').height()  + 40;
		var height = Math.max(($(window).height()) - 210, $('#wrapper').height());
		
			if ($.browser.webkit) {
			    height = height + 0; // for some reason, Safari measures the height differently so compensating here
			 }
			
		$('#wrapper').css("height",  height + 'px');
	});
	$(window).resize();
	

	
	
});


