/*uniform navigation script*/

        function putNavBar()
{
   pgname = new Array( 9 )
   pgname[ 0 ] = "index.html"
   pgname[ 1 ] = "http://racetraxentrypoint.com/EMWCVDTS/"
   pgname[ 2 ] = "http://racetraxentrypoint.com/EMWCVDTS/"
   pgname[ 3 ] = "sponsors.html"
   pgname[ 4 ] = "contact.html"
   pgname[ 5 ] = "tv.html"
   pgname[ 6 ] = "pressPikesPeak.html"
   pgname[ 7 ] = "http://www.motorcyclemuseum.org/halloffame/detail.aspx?RacerID=238"
   pgname[ 8 ] = "schedule.html"
   
   textline = new Array( 9 )
   textline[ 0 ] = "Home"
   textline[ 1 ] = "Race&#160;Entry"
   textline[ 2 ] = "Results&#160;and&#160;Points"
   textline[ 3 ] = "Sponsors&#160;and&#160;Links"
   textline[ 4 ] = "Contact&#160;Us"
   textline[ 5 ] = "E!&#160;Tv"
   textline[ 6 ] = "Press"
   textline[ 7 ] = "Biography" 
   textline[ 8 ] = "Schedule"

   document.write("<div class='Nav'><ul>");
   if(document.title != "EMWCVDTS Home")
   {document.write("<li><a href='index.html'>Home</a></li>");}

   for(i=0; i<9; i++)
   {
    if(textline[i]!= document.title)
   	 {if(pgname[i] != "index.html")
   	  {
   	  document.write("<li><a href="+pgname[i]+">"+textline[i]+"</a></li>");
   	  }
   	 }
   }
 
   document.write("</ul>");
   document.write("</div>");
}
