$(document).ready(function() {

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

function makeHeight() {
	if ($(window).height() > $(document).height()) {
		$("#primary").height($(window).height() - 93 - 4);
		$(".loggedin #primary").height($(window).height() - 93 - 28 - 4);
	} else {
		$("#primary").height($(document).height() - 93 - 4);
		$(".loggedin #primary").height($(document).height() - 93 - 28 - 4);
	}
}
