
<!--

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if (browserName == "Netscape" && browserVer >= 3) {
        version = "n3";
        }
else if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) {
        version = "n3";
        }
else {
        version = "n2";
}


if (version == "n3") {


				a1off= new Image(200,24);
				a1off.src = "/images/n1_home.gif";
				a1on= new Image(200,24);
				a1on.src = "/images/n1_home_alt.gif";

				b1off= new Image(200,24);
				b1off.src = "/images/n1_property_listings.gif";
				b1on= new Image(200,24);
				b1on.src = "/images/n1_property_listings_alt.gif";

				c1off= new Image(200,24);
				c1off.src = "/images/n1_services.gif";
				c1on= new Image(200,24);
				c1on.src = "/images/n1_services_alt.gif";

				d1off= new Image(200,24);
				d1off.src = "/images/n1_opitz_management.gif";
				d1on= new Image(200,24);
				d1on.src = "/images/n1_opitz_management_alt.gif";

				e1off= new Image(200,24);
				e1off.src = "/images/n1_our_team.gif";
				e1on= new Image(200,24);
				e1on.src = "/images/n1_our_team_alt.gif";

				f1off= new Image(200,24);
				f1off.src = "/images/n1_forms.gif";
				f1on= new Image(200,24);
				f1on.src = "/images/n1_forms_alt.gif";

				g1off= new Image(200,24);
				g1off.src = "/images/n1_contact_us.gif";
				g1on= new Image(200,24);
				g1on.src = "/images/n1_contact_us_alt.gif";

}

function img_act(imgName) {
   if (version == "n3") {
      imgOn = eval(imgName + "on.src");
      document [imgName].src = imgOn;
   }
}

function img_inact(imgName) {
   if (version == "n3") {
      imgOff = eval(imgName + "off.src");
      document [imgName].src = imgOff;
   }
}

// -->


