<!--
img1on = new Image();
img1on.src = "menu/menu_3.gif";
img2on = new Image();
img2on.src = "menu/menu_4.gif";
img3on = new Image();
img3on.src = "menu/menu_5.gif";
img4on = new Image();
img4on.src = "menu/menu_6.gif";
img5on = new Image();
img5on.src = "menu/menu_7.gif";
img6on = new Image();
img6on.src = "menu/menu_8.gif";
img7on = new Image();
img7on.src = "menu/menu_9.gif";

img1off = new Image();
img1off.src = "menu/menu_03.gif";
img2off = new Image();
img2off.src = "menu/menu_04.gif";
img3off = new Image();
img3off.src = "menu/menu_05.gif";
img4off = new Image();
img4off.src = "menu/menu_06.gif";
img5off = new Image();
img5off.src = "menu/menu_07.gif";
img6off = new Image();
img6off.src = "menu/menu_08.gif";
img7off = new Image();
img7off.src = "menu/menu_09.gif";


function Flip(img)
{
   if (document.images)
      document.images[img].src = eval(img + "on.src");
}

function Flop(img)
{
   if (document.images)
      document.images[img].src = eval(img + "off.src"); 
}
//-->
