<!-- Hide from older browsers

if (document.images) {
  var first_off = new Image();
  first_off.src = "button1-home.gif";
  var first_on = new Image();
  first_on.src = "button1-home-on.gif";

  var second_off = new Image();
  second_off.src ="button1-gallery.gif";
  var second_on = new Image();
  second_on.src = "button1-gallery-on.gif";

  var third_off = new Image();
  third_off.src ="button1-hosting.gif";
  var third_on = new Image();
  third_on.src = "button1-hosting-on.gif";

  var fourth_off = new Image();
  fourth_off.src ="button1-clients.gif";
  var fourth_on = new Image();
  fourth_on.src = "button1-clients-on.gif";

  var fifth_off = new Image();
  fifth_off.src ="button1-contact.gif";
  var fifth_on = new Image();
  fifth_on.src = "button1-contact-on.gif";

   var sixth_off = new Image();
  sixth_off.src ="button3-quotes.gif";
  var sixth_on = new Image();
  sixth_on.src = "button3-quotes-on.gif";

}

function activate(imgName) {
  if (document.images) {
    if ( eval(imgName + "_on.complete") ) {
      document.images[imgName].src = eval(imgName + "_on.src");
    }
  }
}

function deactivate(imgName) {
  if (document.images) {
    if ( eval(imgName + "_off.complete") ) {
      document.images[imgName].src = eval(imgName + "_off.src");
    }
  }
}

// End script hiding -->