<!-- 
versionButton = 1
browserName = navigator.appName;           
         browserVer = parseInt(navigator.appVersion); 
             if ((browserName == "Netscape" &&
                 browserVer >= 3) ||
                 (browserName == "Microsoft Internet Explorer" &&
                  browserVer >= 4))
                   versionButton = "3";
             
             if (versionButton == "3")                   

             {
             toc1on = new Image();          
             toc1on.src = "images/communities_dn.gif";               
             toc2on = new Image();          
             toc2on.src = "images/leasingapp_dn.gif";               
             toc3on = new Image();          
             toc3on.src = "images/onlinepay_dn.gif";               
             toc4on = new Image();          
             toc4on.src = "images/contact_dn.gif";               
             toc5on = new Image();          
             toc5on.src = "images/search_dn.gif";               
             toc6on = new Image();          
             toc6on.src = "images/searchlist_dn.gif";               

             toc1off = new Image();         
             toc1off.src = "images/communities_up.gif";          
             toc2off = new Image();         
             toc2off.src = "images/leasingapp_up.gif";          
             toc3off = new Image();         
             toc3off.src = "images/onlinepay_up.gif";          
             toc4off = new Image();         
             toc4off.src = "images/contact_up.gif";          
             toc5off = new Image();         
             toc5off.src = "images/search_up.gif";          
             toc6off = new Image();         
             toc6off.src = "images/searchlist_up.gif";          
             }

function img_act(imgName)
     {
             if (versionButton == "3") 
             {
             imgOn = eval(imgName + "on.src");
             document [imgName].src = imgOn;
             }
     }

     function img_inact(imgName)
     {
             if (versionButton == "3") 
             {
             imgOff = eval(imgName + "off.src");
             document [imgName].src = imgOff;
             }
     }
// -->