<!--
var compat = 1;
var appname = navigator.appName;
var appversion = parseFloat(navigator.appVersion);
// checking for compatibility
if (appname == "Microsoft Internet Explorer") {
   if (appversion < 4) {
       compat = '';
   };
};
if(compat) {

wellcomeon = new Image;
wellcomeon.src = "wellcome_on.gif";
wellcomeoff = new Image;
wellcomeoff.src = "wellcome.gif";

galleryon = new Image;
galleryon.src = "gallery_on.gif";
galleryoff = new Image;
galleryoff.src = "gallery.gif";

serviceson = new Image;
serviceson.src = "services_on.gif";
servicesoff = new Image;
servicesoff.src = "services.gif";

reservationon = new Image;
reservationon.src = "reservation_on.gif";
reservationoff = new Image;
reservationoff.src = "reservation.gif";

contacton = new Image;
contacton.src = "contact_on.gif";
contactoff = new Image;
contactoff.src = "contact.gif";
};

// swap images using the cached images
function glow(x, y)
{
   if(compat) {
      document.images[x].src=eval(y+'.src');
   } else {};
}

//-->
