function resize() {
	if($(window).width() > ($("#site").width() + 75))
		$("#site").css("padding-right", Math.floor($(window).width() - $("#site").width())/3);
	else 
		$("#site").css("padding-right", 17);
	
	jQuery.each(jQuery.browser, function(i, val) {
		if(i=="msie" && jQuery.browser.version.substr(0,1)=="6")
			$("div#site").css("height", $(window).height() - 70);
		else
			$("div#site").css("min-height", $(window).height() - 70);
	});
}	
$(function() { resize(); window.onresize = resize; });