<!-- Hide from older browsers
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if ((browserName == "Netscape" && browserVer >= 3) || (browserName == "Microsoft Internet Explorer" && browserVer >=4)) version = "n3";
 
else version = "n2";

if (version == "n3")         {

toc0off=new Image();toc0on=new Image();
toc1off=new Image();toc1on=new Image();
toc2off=new Image();toc2on=new Image();
toc3off=new Image();toc3on=new Image();
toc4off=new Image();toc4on=new Image();
toc5off=new Image();toc5on=new Image();
toc6off=new Image();toc6on=new Image();
toc7off=new Image();toc7on=new Image();
toc8off=new Image();toc8on=new Image();
toc9off=new Image();toc9on=new Image();


toc0off.src="/_img/nav/home_off.gif";toc0on.src="/_img/nav/home_on.gif";
toc1off.src="/_img/nav/listings_off.gif";toc1on.src="/_img/nav/listings_on.gif";
toc2off.src="/_img/nav/brokerage_off.gif";toc2on.src="/_img/nav/brokerage_on.gif";
toc3off.src="/_img/nav/commercial_off.gif";toc3on.src="/_img/nav/commercial_on.gif";
toc4off.src="/_img/nav/valuations_off.gif";toc4on.src="/_img/nav/valuations_on.gif";
toc5off.src="/_img/nav/articles_off.gif";toc5on.src="/_img/nav/articles_on.gif";
toc6off.src="/_img/nav/people_off.gif";toc6on.src="/_img/nav/people_on.gif";
toc7off.src="/_img/nav/contact_off.gif";toc7on.src="/_img/nav/contact_on.gif";
toc8off.src="/_img/nav/affiliation_off.gif";toc8on.src="/_img/nav/affiliation_on.gif";
toc9off.src="/_img/nav/agreement_off.gif";toc9on.src="/_img/nav/agreement_on.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;
          }

}

//-->