// rollover button file

       var onArray = new Array("cdvpushed.gif","propsearchpushed.gif","intmappushed.gif",
                              "financalcpushed.gif","moreinfopushed.gif","slideshowpushed.gif",
                              "homespushed.gif","landpushed.gif","busrecpushed.gif",
                              "soldpropspushed.gif");

       var offArray =  new Array("cdvbutton.gif","propsearchbutton.gif","intmapbutton.gif",
                                "financalcbutton.gif","moreinfobutton.gif","slideshowbutton.gif",
                                "homesbutton.gif","landbutton.gif","busrecpropbutton.gif",
                                "soldpropsbutton.gif");

       var onImages = new Array();
         // array to preload on buttons

       for(var i = 0; i <= onArray.length; i++) {
          onImages[i] = new Image();
          onImages[i].src = onArray[i];
       }

       function setButtonOn(index) {
          document.images[index + 1].src = "../buttons/" + onArray[index];
       }

       function setButtonOff(index) {
          document.images[index + 1].src = "../buttons/" + offArray[index];
       }