function consultscreen() {
                window.open("","consult","width=600,height=500,resizable=no,toolbar=no,location=no,directories=no,scrollbars=yes")
                } 

if (document.images) {

       
         button1on = new Image()
         button1on.src = "navimages/consumer2on.gif"
         button2on = new Image()
         button2on.src = "navimages/bankruptcyoff.gif"
         button3on = new Image()
         button3on.src = "navimages/getstartedon.gif"
         button4on = new Image()
         button4on.src = "navimages/ourserviceson.gif"

              
         button1off = new Image()
         button1off.src = "navimages/consumer2off.gif"
         button2off = new Image()
         button2off.src = "navimages/bankruptcyon.gif"
         button3off = new Image()
         button3off.src = "navimages/getstartedoff.gif"
         button4off = new Image()
         button4off.src = "navimages/ourservicesoff.gif"
    
         }

      function imgOn(imgName) {
         if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
         }
      }

      function imgOff(imgName) {
         if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
         }
      }