
var allNav = new Array('home','locations','order','menu','catering','giftCards','reviews','about','franchising','mailing','contact');


function preLoad() {
	for (i=0; i<allNav.length; i++) {
		var each = new Image();
		each.src="/images/nav_" + allNav[i] + "_on.jpg";
	}
}

function nav_on(name) {
	document[name].src="/images/nav_" + name + "_on.jpg";
}

function nav_off(name) {
	document[name].src="/images/nav_" + name + ".jpg";
}


function on(name) {
	document[name].src="/images/" + name + "_on.jpg";
}

function off(name) {
	document[name].src="/images/" + name + ".jpg";
}





function showPhoto(whichPhoto) {
	theWidth=1000;
	theHeight=700;
	
	thePopup = window.open('/photos/popup.php?id='+whichPhoto,'photoViewer','width='+theWidth+',height='+theHeight+',screenX=150,screenY=150,left=150,top=150,status=yes,resizable=yes,scrollbars=auto,titlebar=yes,location=no,menubar=yes,personalbar=no');
	thePopup.focus();
}



