var page = new Array ("Home", "Books", "Gallery/Buy", "Pets/Pencil Art<br />Commissions", "About the Artist", "Contact Me");
var link = new Array ("index.htm", "book.htm", "gallery.php", "commission.php", "artist.htm", "contact.htm");
document.write ("<div class='noprint' style='position: fixed; left: 5%; margin: 12px 6px;'>\n");
document.write ("  <table border='0' cellpadding='0' cellspacing='0' width='150'>\n");
var i;
for (i = 1; i <= page.length; i++) {
  var fs = 100;
  if (i > 3 && i < 6) fs = 80;
  document.write ("    <tr align='center'>\n");
  document.write ("      <td style=\"height: 61px; background-image: url(menu/" + i + ".gif); background-repeat: no-repeat; background-position: center center; cursor: pointer; font-size: " + fs + "%\" class=\"menu\" onmouseover=\"this.style.color='aquamarine';\" onmouseout=\"this.style.color='black';\" onclick=\"window.location.href='" + link[i-1] + "';\">" + page[i-1] + "</td>\n");
  document.write ("    </tr>\n");
}
document.write ("  </table>\n");
document.write ("</div>");
