function setBaseDivs() {
	if ( (screen.width < 850) && (screen.height < 650) )  {
		document.writeln('<STYLE TYPE="text/css">');
		document.writeln('<\!--');
		document.writeln('#centerDiv {position:absolute; left:0px; top:0px; width:760px; z-index:-50');
		//height:472;  took this out of centerdiv def
		document.writeln('-->');
		document.writeln('</STYLE>');
	} else {
		var ie = (document.all) ? 1:0;
		if (ie) {
			windowWidth = document.body.offsetWidth-20;
			windowHeight = document.body.offsetHeight;
		} else {
			windowWidth = window.innerWidth-16;
			windowHeight = window.innerHeight;
		}
		document.writeln('<STYLE TYPE="text/css">');
		document.writeln('<\!--');
		
		document.writeln('@media screen {');
		document.writeln('#centerDiv { position:absolute; left: '+(windowWidth/2-706/2)+'px; top: 0px; width: 760px; } ');
//		document.writeln('#centerDiv { position:absolute; left: 100px; top: 100px; width: 760px; height: 472px; } ');
		document.writeln('}');
		
		document.writeln('@media print {');
		//document.writeln('@media screen {');
		document.writeln('#centerDiv { position:absolute; left: 0px; top: 0px; height: 100%;} ');
		document.writeln('}');
	
// backup	document.writeln('#centerDiv { position:absolute; left: '+(windowWidth/2-706/2)+'px; top: '+(windowHeight/2-530/2)+'px; width: 760px; height: 472px; z-index: -50; } ');
		//document.writeln('#centerDiv {position:absolute; left:'+(windowWidth/2-706/2)+'; top:'+(windowHeight/2-530/2)+'; width:760; height:472; z-index:-50');
		document.writeln('-->');
		document.writeln('</STYLE>');
	}
}

function preloadImages() {
	if (document.images) {
		pic1 = newImage("../images/d_foodsplit1.jpg");
		pic2 = newImage("../images/d_foodsplit2.jpg");
		pic3 = newImage("../images/d_foodsplit3.jpg");
		pic4 = newImage("../images/d_exterior_name.jpg");
		pic5 = newImage("../images/d_exterior_whole.jpg");
		pic6 = newImage("../images/d_exterior_flowers_OLD.jpg");
		pic7 = newImage("../images/d_interior_table.jpg");
		pic8 = newImage("../images/d_interior_windows3.jpg");
		pic9 = newImage("../images/d_interior_windows2.jpg");
		pic10 = newImage("../images/d_wine_bottles.jpg");
		pic11 = newImage("../images/d_menu_food_split.jpg");
	}
}