<!-- Hide from older browsers

if (document.images) {
  var first_off = new Image();
  first_off.src = "images/button1-about.gif";
  var first_on = new Image();
  first_on.src = "images/button1-about-on.gif";

  var second_off = new Image();
  second_off.src ="images/button1-news.gif";
  var second_on = new Image();
  second_on.src = "images/button1-news-on.gif";

  var third_off = new Image();
  third_off.src ="images/button1-practice.gif";
  var third_on = new Image();
  third_on.src = "images/button1-practice-on.gif";

  var fourth_off = new Image();
  fourth_off.src ="images/button1-faq.gif";
  var fourth_on = new Image();
  fourth_on.src = "images/button1-faq-on.gif";

  var fifth_off = new Image();
  fifth_off.src ="images/button1-contact.gif";
  var fifth_on = new Image();
  fifth_on.src = "images/button1-contact-on.gif";

   var sixth_off = new Image();
  sixth_off.src ="images/button1-home.gif";
  var sixth_on = new Image();
  sixth_on.src = "images/button1-home-on.gif";

   var seventh_off = new Image();
  seventh_off.src ="button1-home.gif";
  var seventh_on = new Image();
  seventh_on.src = "button1-home-on.gif";

   var eighth_off = new Image();
  eighth_off.src ="buttons2009-2-club.png";
  var eighth_on = new Image();
  eighth_on.src = "buttons2009-2-club-on.png";
}

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 -->
