$(document).ready(function() {
	var nonfoot = $('#non-footer').height();
	var content = $('#content').height();
	var newheight = nonfoot - 500;
	if(content < newheight){
		if($('body').is('.home')){
			$('#content').height(newheight - 70);		
		} else {
			$('#content').css('min-height', newheight);
		}
	}
	
	if($('#sidebar').length){
		$('#sidebar').css('min-height', newheight-65);
	}
});
