// JavaScript Document

var _active = 0;
var browserName = navigator.appName;
var browserVer  = parseInt( navigator.appVersion );
if (
     ( browserName == "Netscape" && browserVer >= 3 )
     ||
     ( browserName == "Microsoft Internet Explorer" && browserVer >= 4 )
) {
    var version = "n3";
} else {
    var version = "n2";
}

if ( version == "n3" ) {
   //------------------------------------
   home_on  = new Image();
   home_off = new Image();
   home_photo = new Image();
   home_on.src = "images/home_up.gif";
   home_off.src  = "images/home_up.gif";
   home_photo.src = "images/photo_recent1.gif";
   //------------------------------------
   email_on  = new Image();
   email_off = new Image();
   email_photo = new Image();
   email_on.src = "images/email_on.gif";
   email_off.src  = "images/email_off.gif";
   email_photo.src = "images/photo_email.gif";
   //------------------------------------
   about_on  = new Image();
   about_off = new Image();
   about_photo = new Image();
   about_on.src = "images/abouted_on.gif";
   about_off.src  = "images/abouted_off.gif";
   about_photo.src = "images/photo_abouted.gif";
   //------------------------------------ 
   recent_on  = new Image();
   recent_off = new Image();
   recent_photo = new Image();
   recent_on.src = "images/recent_on.gif";
   recent_off.src  = "images/recent_off.gif";
   recent_photo.src = "images/photo_recent3.gif";
   //------------------------------------    
   intero_on  = new Image();
   intero_off = new Image();
   intero_photo = new Image();
   intero_on.src = "images/aboutintero_on.gif";
   intero_off.src  = "images/aboutintero_off.gif";
   intero_photo.src = "images/photo_recent4.gif";
   //------------------------------------
   testimonials_on  = new Image();
   testimonials_off = new Image();
   testimonials_photo = new Image();
   testimonials_on.src = "images/testimonials_on.gif";
   testimonials_off.src  = "images/testimonials_off.gif";
   testimonials_photo.src = "images/photo_abouted.gif";
   //------------------------------------    
   recent_on  = new Image();
   recent_off = new Image();
   recent_photo = new Image();
   recent_on.src = "images/recent_on.gif";
   recent_off.src  = "images/recent_off.gif";
   recent_photo.src = "images/photo_recent3.gif";
   //------------------------------------ 
   concierge_on  = new Image();
   concierge_off = new Image();
   concierge_photo = new Image();
   concierge_on.src = "images/concierge_on.gif";
   concierge_off.src  = "images/concierge_off.gif";
   concierge_photo.src = "images/photo_concierge.gif";
   //------------------------------------
    }
function img_act( imgName ) {
   if (version == "n3") {
      imgOn = eval ( imgName + "_on.src" );
      document.images[imgName].src = imgOn;
      txtOn = eval ( imgName + "_photo.src" );
      document.images['photo'].src = txtOn
   }
}
