synopened=false;
//Rollovers
bname = navigator.appName;
bvers = parseInt(navigator.appVersion);
if (bname == "Netscape" && bvers >=3) {
   version = "n3";
}
else if (bname == "Microsoft Internet Explorer" && bvers >=3) {
   version = "n3";
}
else {
   version ="n2";
}

if (version == "n3") {

   home_top_on      = new Image;
   home_top_on.src  = "/_images/home_top2.gif";
   home_top_off     = new Image;
   home_top_off.src = "/_images/home_top.gif";
   
   login_on      = new Image;
   login_on.src  = "/_images/login_top2.gif";
   login_off     = new Image;
   login_off.src = "/_images/login_top.gif";
   
   signup_on      = new Image;
   signup_on.src  = "/_images/sign_up_top2.gif";
   signup_off     = new Image;
   signup_off.src = "/_images/sign_up_top.gif";
   
   buyersguide_on      = new Image;
   buyersguide_on.src  = "/_images/buyers_top2.gif";
   buyersguide_off     = new Image;
   buyersguide_off.src = "/_images/buyers_top.gif";
   
   contact_on      = new Image;
   contact_on.src  = "/_images/contact_top2.gif";
   contact_off     = new Image;
   contact_off.src = "/_images/contact_top.gif";
   
   advertiseside_on      = new Image;
   advertiseside_on.src  = "/_images/advertise2.gif";
   advertiseside_off     = new Image;
   advertiseside_off.src = "/_images/advertise.gif";
   
   signupside_on      = new Image;
   signupside_on.src  = "/_images/sign_up2.gif";
   signupside_off     = new Image;
   signupside_off.src = "/_images/sign_up.gif";
   
   sitemapside_on      = new Image;
   sitemapside_on.src  = "/_images/site_map2.gif";
   sitemapside_off     = new Image;
   sitemapside_off.src = "/_images/site_map.gif";
   
   linkside_on      = new Image;
   linkside_on.src  = "/_images/links_side2.gif";
   linkside_off     = new Image;
   linkside_off.src = "/_images/links_side.gif";
   
   storyside_on      = new Image;
   storyside_on.src  = "/_images/stories2.gif";
   storyside_off     = new Image;
   storyside_off.src = "/_images/stories.gif";
   
   contactside_on      = new Image;
   contactside_on.src  = "/_images/contact_side2.gif";
   contactside_off     = new Image;
   contactside_off.src = "/_images/contact_side.gif";
   
   website_on      = new Image;
   website_on.src  = "/_images/website_line2.gif";
   website_off     = new Image;
   website_off.src = "/_images/websiteline.gif";
   
   weather_on      = new Image;
   weather_on.src  = "/_images/weather2.gif";
   weather_off     = new Image;
   weather_off.src = "/_images/weather.gif";
   
   mapquest_on      = new Image;
   mapquest_on.src  = "/_images/mapquest2.gif";
   mapquest_off     = new Image;
   mapquest_off.src = "/_images/mapquest.gif";
   
   adventure_on      = new Image;
   adventure_on.src  = "/_images/adventures2.gif";
   adventure_off     = new Image;
   adventure_off.src = "/_images/adventures.gif";
   
   st_on      = new Image;
   st_on.src  = "/_images/state-country2.gif";
   st_off     = new Image;
   st_off.src = "/_images/state-country.gif";
   
   co_on      = new Image;
   co_on.src  = "/_images/company2.gif";
   co_off     = new Image;
   co_off.src = "/_images/company.gif";
   
   pricing_on      = new Image;
   pricing_on.src  = "/_images/pricing2.gif";
   pricing_off     = new Image;
   pricing_off.src = "/_images/pricing.gif";
   
   state_on      = new Image;
   state_on.src  = "/_images/state2.gif";
   state_off     = new Image;
   state_off.src = "/_images/state.gif";
   
}

function active(iname) {
  if (version == "n3") {
     imgOn = eval(iname + "_on.src");
     document[iname].src = imgOn;
  }
}

function inactive(iname) {
  if (version == "n3") {
     imgOff = eval(iname + "_off.src");
     document[iname].src =  imgOff;
  }
}