jQuery(document).ready(function(){
	paperHeight();
	jQuery(window).resize(function(){
		paperHeight();
	})
	
	var isIE6 = (jQuery.browser.msie && jQuery.browser.version.substr(0,1) <= 6);
	if(isIE6)DD_belatedPNG.fix("img, #navigation");
	
});

var paperHeight = function(){
	jQuery("#paper").css("height", (jQuery(document).height()-138) + "px");
	jQuery("#content").css("height", (jQuery(document).height()-138) + "px");
}
