// nav2HTML.js
// JavaScript file to generate HTML for the navigation buttons that will appear on all pages.
// This JavaScript file exists as a solution to the problem of not being able
// to include an HTML file within another HTML file.
if (document.images) { // if browser can do JavaScript 
  var theHTML = '<td ALIGN=CENTER VALIGN=TOP WIDTH="200"><a href="index2.html" onmouseout="isimgact( \'tnote1\',0)" onmouseover="isimgact( \'tnote1\',1)"><img SRC="images/tnotehome.gif" NAME="tnote1" ALT="home" NOSAVE BORDER=0 height=24 width=63 align=TEXTTOP></a>';
  theHTML += '<p><a href="who.html" onmouseout="isimgact( \'tnote2\',0)" onmouseover="isimgact( \'tnote2\',1)"><img SRC="images/tnotewho_we_are.gif" NAME="tnote2" ALT="who we are" NOSAVE BORDER=0 height=18 width=125></a>';
  theHTML += '<p><a href="sing.html" onmouseout="isimgact( \'tnote3\',0)" onmouseover="isimgact( \'tnote3\',1)"><img SRC="images/tnotewhat_we_sing.gif" NAME="tnote3" ALT="what we sing" NOSAVE BORDER=0 height=18 width=139></a>';
  theHTML += '<p><a href="perform.html" onmouseout="isimgact( \'tnote4\',0)" onmouseover="isimgact( \'tnote4\',1)"><img SRC="images/tnoteupcoming_shows.gif" NAME="tnote4" ALT="upcoming shows" NOSAVE BORDER=0 height=18 width=160></a>';
  theHTML += '<p><a href="hire.html" onmouseout="isimgact( \'tnote5\',0)" onmouseover="isimgact( \'tnote5\',1)"><img SRC="images/tnotehire_take_note_.gif" NAME="tnote5" ALT="hire take note!" NOSAVE BORDER=0 height=18 width=144></a>';
  theHTML += '<p><a href="aud.html" onmouseout="isimgact( \'tnote6\',0)" onmouseover="isimgact( \'tnote6\',1)"><img SRC="images/tnoteauditions.gif" NAME="tnote6" ALT="auditions" NOSAVE BORDER=0 height=18 width=93></a>';
  theHTML += '<p><a href="cds.html" onmouseout="isimgact( \'tnote7\',0)" onmouseover="isimgact( \'tnote7\',1)"><img SRC="images/tnoteorder_our_cds.gif" NAME="tnote7" ALT="order our cds" NOSAVE BORDER=0 height=18 width=133></a>';
  theHTML += '<p><a href="links.html" onmouseout="isimgact( \'tnote8\',0)" onmouseover="isimgact( \'tnote8\',1)"><img SRC="images/tnotelinks.gif" NAME="tnote8" ALT="links" NOSAVE BORDER=0 height=18 width=63></a>';
  theHTML += '<p></td>';
document.write(theHTML);
}
