/* File: menu.js
 * Re:	Menu functions
 */
	function outputMenuItem( name, page, current, isFirst){
		document.write("<tr  class=\"menu\">");
		document.write("<td><img width=7 height=7  src=\"images/SquareBlueBullet2.gif\" border=0 ></td>");
		document.write("<td>");
		if (name == current)
			document.write("<span class=\"menuhi\">" + name + "</a></td>");
		else {			
			document.write("<a href=\"" + page + "\">");
			document.write("<font color=\"#000000\">" + name + "</a></td>");
		}
		if (isFirst)
			document.write("<td rowspan=10><img src=\"images/SquareBlueBullet2.gif\" border=0 height=200 width=1></td>");
		document.write("</tr>");
	}

	
	function outputMenu( sPage){
		document.write("<table cellpadding=5>");
		outputMenuItem("Home", "index.html", sPage, true);
		outputMenuItem("Biography", "biography.html", sPage, false);
		outputMenuItem("Upcoming appearances", "events.html", sPage, false);
                outputMenuItem("Recent CD releases", "recent.html", sPage, false); 
		outputMenuItem("Photo gallery", "photos.html", sPage, false);
		outputMenuItem("Musical examples", "music.html", sPage, false);
		outputMenuItem("Discography", "discs.html", sPage, false);
		//outputMenuItem("Bibliography", "biblio.html", sPage, false);
		//outputMenuItem("Quote of the month", "quote.html", sPage, false);
		outputMenuItem("Favorite 18th Century recipes", "recipe.html", sPage, false);
		//outputMenuItem("Suggested reading", "reading.html", sPage, false);
		outputMenuItem("Links", "links.html", sPage, false);
		document.write("</table>");
	}		

	function newOutputMenuItem( name, page, current, isFirst){
		if (name == current)
			document.write("<li class=\"active\">");
		else
			document.write("<li>");
		//document.write("<img width=7 height=7  src=\"images/SquareBlueBullet2.gif\" border=0 >&nbsp;");
		document.write("<a href=\"" + page + "\">" + name + "</a></li>");
	}
	function newOutputMenu( sPage )
	{
		document.write("<ul id=\"menu\">");
		newOutputMenuItem("Home", "index.html", sPage, true);
		newOutputMenuItem("Biography", "biography.html", sPage, false);
		newOutputMenuItem("Upcoming appearances", "events.html", sPage, false);
                newOutputMenuItem("Recent CD releases", "recent.html", sPage, false); 
		newOutputMenuItem("Photo gallery", "photos.html", sPage, false);
		newOutputMenuItem("Musical examples", "music.html", sPage, false);
		newOutputMenuItem("Discography", "discs.html", sPage, false);
		newOutputMenuItem("Favorite 18th Century recipes", "recipe.html", sPage, false);
		newOutputMenuItem("Links", "links.html", sPage, false);
		document.write("</ul>");
			
	}

	function outputLogo(){
		document.write("<div id=\"logo\">");
		document.write("<img id=\"logoImage\" width=180 height=120 src=\"http://www.jedwentz.com/images/beautifulmusic.jpg\"/>");
		document.write("<p><a href=\"main.html\" style=\"color: #6699FF; font-weight: bold;\"><i>Jed Wentz</i></a><br>");
		document.write("<div style=\"font-size: 16pt; padding:0px;\"><i>traverso</i></div></div>");

	}
