// 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", "san-francisco-strippers.html", "menuHome.gif", "Home"],
				["sfgallery", "san-francisco-strippers-photo-gallery.html", "menuSFGallery.gif", "San Francisco Gallery"],
				["segallery", "seattle-strippers-photo-gallery.html", "menuSeattleGallery.gif", "Seattle Gallery"],
				["pgallery", "portland-stripper-photo-gallery.html", "menuPortlandGallery.gif", "Portland Gallery"],
				["showsandprices", "stripper-dancer-shows-prices.html", "san-francisco-strippers-ShowsAndPrices.gif", "Shows and Prices"],
				["ssgallery", "san-francisco-seattle-portland-adult-entertainment.html", "menuSpecialServices.gif", "Special Services"],
				["faq", "san-francisco-seattle-portland-nude-topless-dancer-stripper-faq.html", "menuFAQ.gif", "FAQ"],
				["about", "about-your-party-girls-san-francisco-seattle-portland-stripper-reviews.html", "menuAboutYpg.gif", "About Ypg"],
				["moregalleries", "more-stripper-photo-galleries.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> ');
}
