//Use extreme care if editing this file, as there are a series of double and single quotes which need to be placed appropriately.//In addition, the images are accessed through their index position in the images array for the purpose of implementing the rollover.//The author strongly suggests making a back up copy of this file prior to editing.//Just stores a string of HTML code to eliminate redundancy on the individual pagesfunction menutop(){  var htmlCodeString = ""; //variable to hold the html code that prints the menu  //this first section of code draws the top part of the table  htmlCodeString = '<table bgcolor="929292" cellspacing=0 cellpadding=3 width=100% height="100%" align=center border=0>' + "\n";  htmlCodeString += '    <tr>' + "\n"; htmlCodeString += '    <td align="center"><image src="images/b1.jpg">' + "\n";  htmlCodeString += '    <image src="images/b2.jpg">' + "\n";  htmlCodeString += '    <image src="images/b3.jpg">' + "\n";htmlCodeString += '    <image src="images/b4.jpg">' + "\n";htmlCodeString += '    <image src="images/b5.jpg">' + "\n";   htmlCodeString += '    <image src="images/b6.jpg">' + "\n";   htmlCodeString += '    <image src="images/b7.jpg">' + "\n";   htmlCodeString += '    <image src="images/b8.jpg">' + "\n"; htmlCodeString += '    <image src="images/b9.jpg">' + "\n";htmlCodeString += '    <image src="images/b10.jpg">' + "\n";  htmlCodeString += '    <image src="images/b11.jpg">' + "\n";htmlCodeString += '  <image src="images/b12.jpg">' + "\n";     htmlCodeString += '    </td>' + "\n";  htmlCodeString += '    </tr>' + "\n";  htmlCodeString += '    </table>' + "\n";  document.write(htmlCodeString + "\n" );  document.close( );} //end menutop
