/* COPYRIGHT 2005 Tim Harris, TimHarris.com, ALL RIGHTS RESERVED */


	startTable()
 	MenuItem("Home Page",  "index.php", "homepage")
 	MenuItem("Gig Dates & Maps",  "index_gigdates.php", "gigdates")
 	MenuItem("Media Coverage",  "index_headline.htm", "mediacoverage")
 	MenuItem("Bio & Headshot",  "index_moreAboutElaine.htm", "moreAboutElaine")
 	MenuItem("Photos",  "index_photoalbum.htm", "photoalbum")
 	MenuItem("Contact Elaine",  "index_contact.htm", "contact") 
	endTable()

 
function startTable() {document.write("<table cellpadding=1 cellspacing=0 border=1 align=center><tr>")}
// required images:  t.gif
function MenuItem(name,link,secondID)  //   ,secondID
{document.write("<td align=center width=110 bgcolor=ffff33  background=t.gif  ");
if (document.location==link  || secondID==photogalleryID)   document.write(" class=rollovercolor   ")
document.write(" >");
document.write("<nobr><a href=" + link + "   ><font class=menu>&nbsp;" + name + "&nbsp;</font></a></nobr>"+"</td>");
}
function endTable() {document.write("</tr></table>")}
 