  <!--
  //Multiple Button Rollover Code
  //copyright © 2002, Dax Assist
  //visit http://www.daxassist.com for this and other javascripts with full tutorials.

  if(document.images) {
    pics = new Array();
    pics[1] = new Image();
    pics[1].src = "./images/nav_buttons/about-off.jpg";
    pics[2] = new Image();
    pics[2].src = "./images/nav_buttons/about-on.jpg";
    pics[3] = new Image();
    pics[3].src = "./images/nav_buttons/shop-off.jpg";
    pics[4] = new Image();
    pics[4].src = "./images/nav_buttons/shop-on.jpg";
    pics[5] = new Image();
    pics[5].src = "./images/nav_buttons/how-off.jpg";
    pics[6] = new Image();
    pics[6].src = "./images/nav_buttons/how-on.jpg";
    pics[7] = new Image();
    pics[7].src = "./images/nav_buttons/ideas-off.jpg";
    pics[8] = new Image();
    pics[8].src = "./images/nav_buttons/ideas-on.jpg";
    pics[9] = new Image();
    pics[9].src = "./images/nav_buttons/recipes-off.jpg";
    pics[10] = new Image();
    pics[10].src = "./images/nav_buttons/recipes-on.jpg";
    pics[11] = new Image();
    pics[11].src = "./images/nav_buttons/contact-off.jpg";
    pics[12] = new Image();
    pics[12].src = "./images/nav_buttons/contact-on.jpg";
  }
    function changer(from,to) {
    if(document.images) {
    document.images[from].src = pics[to].src;
    }
  }
  //-->

