function showNav(curPage)
{
   //   name,           href               Img,           attributes
   var pageinfo = [
      [ "Home",        "index.html",      "home",       "width=78 height=32 border=0" ],
      [ "Schedule",    "schedule.html",   "schedule",   "width=99 height=32 border=0" ],
      [ "Roster",      "roster.html",     "roster",     "width=83 height=32 border=0" ],
      [ "Photos",      "photo.html",      "photo",      "width=90 height=32 border=0" ],
      [ "Alumni",      "alumni.html",     "alumni",     "width=93 height=32 border=0" ],
      [ "Links",       "links.html",      "links",      "width=88 height=32 border=0" ],
      [ "Information", "information.html","info",   "width=65 height=32 border=0" ] 
   ];

   var text = "<img src='images/nav_spacer.png' width=23 height=32 border=0 />"
   var img = "";
   for( i=0; i<pageinfo.length; i++ ) {
      img = "images/" + pageinfo[i][2];
      if( curPage == pageinfo[i][0] ) { img += "page_currentpage.png"; } else { img += "page_link.png"; }
      text += "<a href='" + pageinfo[i][1] + "'>";
      text += "<img src='" + img + "'" 
      text += pageinfo[i][3] + " alt='" + pageinfo[i][0] + "Button' /></a>"
   }
   //text += "<img src='images/nav_spacer.png'       width=230 height=32 border=0  />"
   //text += "<img src='images/contactpage_link.png' width=86  height=32 border=0 alt='Contact Button' />"
   text += "<img src='images/navbar_line.png'      width=975 height=4  border=0 alt='Navigation Line' />"
   document.write(text);
}

