<!--
var loaded = false;

function loadImages() {
   if (document.images) {
      topMenuOn = new Array();
      topMenuOff = new Array();
   
      topMenuOn['main']  = new Image; topMenuOn['main'].src = "image/w-homes.gif";
      topMenuOff['main'] = new Image; topMenuOff['main'].src = "image/w-home.gif";

      topMenuOn['about']  = new Image; topMenuOn['about'].src = "image/w-abouts.gif";
      topMenuOff['about'] = new Image; topMenuOff['about'].src = "image/w-about.gif";
   
      topMenuOn['news']   = new Image; topMenuOn['news'].src = "image/w-newss.gif";
      topMenuOff['news']  = new Image; topMenuOff['news'].src = "image/w-news.gif";

      topMenuOn['map']   = new Image; topMenuOn['map'].src = "image/w-maps.gif";
      topMenuOff['map']  = new Image; topMenuOff['map'].src = "image/w-map.gif";

      topMenuOn['links']   = new Image; topMenuOn['links'].src = "image/w-links.gif";
      topMenuOff['links']  = new Image; topMenuOff['links'].src = "image/w-link.gif";


      topMenuOn['order']   = new Image; topMenuOn['order'].src = "image/w-orders.gif";
      topMenuOff['order']  = new Image; topMenuOff['order'].src = "image/w-order.gif";
   
      topMenuOn['contacts']   = new Image; topMenuOn['contacts'].src = "image/w-conts.gif";
      topMenuOff['contacts']  = new Image; topMenuOff['contacts'].src = "image/w-cont.gif";

      topMenuOn['faq']   = new Image; topMenuOn['faq'].src = "image/w-qas.gif";
      topMenuOff['faq']  = new Image; topMenuOff['faq'].src = "image/w-qa.gif";

      
      loaded = true;
   }
}


function rollOut(name) {
   if (document.images && loaded) {
      document[name].src = eval("topMenuOff['"+name+"'].src");
   }
}

function rollIn(name) {
   if (document.images && loaded) {
      document[name].src = eval("topMenuOn['"+name+"'].src");
   }
}

//-->

