// Menu for every page on site

function debug(msg) {
  alert("Debug:" + "\n" + msg);
} 
function createTopMenu(page) {
document.write('<br>');
document.write('<div id="menubar">');

var menuArray = [["home", "home.html", "menuHome.gif", "Home"],
				["sfgallery", "sfgallery.html", "menuSFGallery.gif", "San Francisco Gallery"],
				["segallery", "seattlegallery.html", "menuSeattleGallery.gif", "Seattle Gallery"],
				["showsandprices", "showsPrices.html", "menuShowsAndPrices.gif", "Shows and Prices"],
				["ssgallery", "specialServicesGallery.html", "menuSpecialServices.gif", "Special Services"],
				["faq", "faq.html", "menuFAQ.gif", "FAQ"],
				["about", "about.html", "menuAboutYpg.gif", "About Ypg"],
				["moregalleries", "moreGalleries.html", "menuMoreGalleries.gif", "More Galleries"],
				["links", "links.html", "menuLinks.gif", "Links"]];
if (page >= 0)
	menuArray[page][2] = "sel" + menuArray[page][2];
		 
for (i=0; i<menuArray.length; i++)
{
	var str = '<a href="/newsite/' + menuArray[i][1] + '"><img class="menuimage" alt="'
	+ menuArray[i][3] + '" src="/newsite/textImages/menu/' + menuArray[i][2] + '" border="0"></a>';
	//debug(str)
	document.write(str);
}				 				 
document.write('</div> ');
}