// JavaScript Document

var menuH=75;
var footerH=100;

function adjustLayout(){
	if($("#content").length>0){
		$("#content").css("top",menuH+"px");
		$("#content").height($(window).height()-menuH-footerH-40);
		$("#content img").show();
	} 
	$("#footer").css("top",($(window).height()-footerH)+"px");
}
