function preload_images()
{

  image1on = new Image();
  image1on.src = "/images/nav_on-01-01.gif";

  image2on = new Image();
  image2on.src = "/images/nav_on-02-01.gif";

  image3on = new Image();
  image3on.src = "/images/nav_on-03-01.gif";

  image4on = new Image();
  image4on.src = "/images/nav_on-04-01.gif";

  image5on = new Image();
  image5on.src = "/images/nav_on-05-01.gif";

  image6on = new Image();
  image6on.src = "/images/nav_on-06-01.gif";

  image7on = new Image();
  image7on.src = "/images/nav_on-07-01.gif";

  image8on = new Image();
  image8on.src = "/images/nav_on-08-01.gif";

  image99on = new Image();
  image99on.src = "/images/door_on.gif";


  image1off = new Image();
  image1off.src = "/images/nav_off-01-01.gif";

  image2off = new Image();
  image2off.src = "/images/nav_off-02-01.gif";

  image3off = new Image();
  image3off.src = "/images/nav_off-03-01.gif";

  image4off = new Image();
  image4off.src = "/images/nav_off-04-01.gif";

  image5off = new Image();
  image5off.src = "/images/nav_off-05-01.gif";

  image6off = new Image();
  image6off.src = "/images/nav_off-06-01.gif";

  image7off = new Image();
  image7off.src = "/images/nav_off-07-01.gif";

  image8off = new Image();
  image8off.src = "/images/nav_off-08-01.gif";

  image99off = new Image();
  image99off.src = "/images/door_off.gif";
}

function turnOn(imagename) {
  if (document.images) {
    document[imagename].src = eval(imagename + "on.src");
  }
}

function turnOff(imagename) {
  if (document.images) {
    document[imagename].src = eval(imagename + "off.src");
  }
}

function vertical_menu()
{
  document.write("<br><br><a href=\"\#\" onMouseOver=\"document.all.music.src='/sound/riverflow.wav'\"><img src=\"/images/capricorn_large.gif\" border=\"0\"><img src=\"/images/capricorn_large.gif\" border=\"0\"></a>");
  document.write("<table width=\"178\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">");
  document.write("<tr><td><a href=\"\#\" onMouseOver=\"turnOn('image1');document.all.music.src='/sound/sound_01.wav'\" onMouseOut=\"turnOff('image1')\"><img src = \"/images/nav_off-01-01.gif\" name=\"image1\" border=\"0\" width=\"178\" height=\"25\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"\#\" onMouseOver=\"turnOn('image2');document.all.music.src='/sound/sound_02.wav'\" onMouseOut=\"turnOff('image2')\"><img src = \"/images/nav_off-02-01.gif\" name=\"image2\" border=\"0\" width=\"178\" height=\"26\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"\#\" onMouseOver=\"turnOn('image3');document.all.music.src='/sound/sound_03.wav'\" onMouseOut=\"turnOff('image3')\"><img src = \"/images/nav_off-03-01.gif\" name=\"image3\" border=\"0\" width=\"178\" height=\"25\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"\#\" onMouseOver=\"turnOn('image4');document.all.music.src='/sound/sound_04.wav'\" onMouseOut=\"turnOff('image4')\"><img src = \"/images/nav_off-04-01.gif\" name=\"image4\" border=\"0\" width=\"178\" height=\"25\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"\#\" onMouseOver=\"turnOn('image5');document.all.music.src='/sound/sound_05.wav'\" onMouseOut=\"turnOff('image5')\"><img src = \"/images/nav_off-05-01.gif\" name=\"image5\" border=\"0\" width=\"178\" height=\"25\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"\#\" onMouseOver=\"turnOn('image6');document.all.music.src='/sound/sound_06.wav'\" onMouseOut=\"turnOff('image6')\"><img src = \"/images/nav_off-06-01.gif\" name=\"image6\" border=\"0\" width=\"178\" height=\"26\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"\#\" onMouseOver=\"turnOn('image7');document.all.music.src='/sound/sound_07.wav'\" onMouseOut=\"turnOff('image7')\"><img src = \"/images/nav_off-07-01.gif\" name=\"image7\" border=\"0\" width=\"178\" height=\"24\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"\#\" onMouseOver=\"turnOn('image8');document.all.music.src='/sound/sound_08.wav'\" onMouseOut=\"turnOff('image8')\"><img src = \"/images/nav_off-08-01.gif\" name=\"image8\" border=\"0\" width=\"178\" height=\"25\" align=\"bottom\"></a></td></tr>");
  document.write("</table>");
  document.write("<a href=\"\#\" onMouseOver=\"document.all.music.src='/sound/raining.wav'\"><img src=\"/images/capricorn_small.gif\" border=\"0\"></a><br><br>");
  document.write("<bgsound src=\"\#\" id=music loop=1 autostart=\"true\">");
}

function door_menu()
{
  document.write("<a href=\"/news/news.htm\" onMouseOver=\"turnOn('image99')\" onMouseOut=\"turnOff('image99')\"><img src = \"/images/door_off.gif\" name=\"image99\" border=\"0\" width=\"429\" height=\"374\" align=\"bottom\"></a>");
}

