function WriteSeparator() {
	document.write("<td CLASS=MenuItem><font color=\"#FF0000\">|</font></td>");
}


function WriteItem(Name, url) {

 	// find filename of current file
	 StartOfFilename=this.location.pathname.lastIndexOf("/")+1;
	 Filename=this.location.pathname.substr(StartOfFilename);

	if (Filename==url) {
		// highlight and disable this link because we are currently there
		document.write("\n<td CLASS=MenuItemSelected>");
		document.write(Name);
		document.write("\n</td>");
	}
	else {
		document.write("\n<td CLASS=MenuItem><a href=\"" + url +"\">");
		document.write(Name);
		document.write("</a>\n</td>");
	}

}

document.write("<table BORDER=0 CELLSPACING=0 CELLPADDING=1  BGCOLOR='#000000' WIDTH='90%'><tr><TD COLSPAN=1>");


document.write("<table BGCOLOR=\"#000000\" BORDER=0 CELLSPACING=0>\n<tr>");

WriteItem("home", "home.htm");
WriteSeparator();
WriteItem("news", "news.htm");
WriteSeparator();
WriteItem("CDs", "discs.htm");
WriteSeparator();
WriteItem("biography", "bio.htm");
WriteSeparator();
WriteItem("discography","disco.htm");
WriteSeparator();
WriteItem("projects", "projects.htm");
WriteSeparator();
WriteItem("press kit", "presskit.htm");
WriteSeparator();
WriteItem("links","links.htm");
WriteSeparator();
WriteItem("credits","credits.htm");
WriteSeparator();
WriteItem("contact","contact.htm");

document.write("\n</tr>\n</table>\n");


document.write("</td></tr></table>");





