        abouton = new Image(49,28);
        abouton.src = "images/about_over.gif";
        contacton = new Image(58,28);
        contacton.src = "images/contact_over.gif";
        homeon = new Image(45,28);
        homeon.src = "images/home_over.gif";
        orderon = new Image(35,28);
        orderon.src = "images/order_over.gif";
        awardson = new Image(107,21);
        awardson.src = "images/awards_over.gif";
        Cclubon = new Image(165,21);
        Cclubon.src = "images/CCclub_over.gif";
        wineson = new Image(55,28);
        wineson.src = "images/our_wines_over.gif";

        aboutoff = new Image(49,28);
        aboutoff.src = "images/about_static.gif";
        contactoff = new Image(58,28);
        contactoff.src = "images/contact_static.gif";
        homeoff = new Image(45,28);
        homeoff.src = "images/home_static.gif";
        orderoff = new Image(35,28);
        orderoff.src = "images/order_static.gif";
        awardsoff = new Image(107,21);
        awardsoff.src = "images/awards_static.gif";
        Ccluboff = new Image(165,21);
        Ccluboff.src = "images/CCclub_static.gif";
        winesoff = new Image(55,28);
        winesoff.src = "images/our_wines_static.gif";

function img_act(imgName) {

   imgOn = eval(imgName + "on.src");
   document [imgName].src = imgOn;

}

function img_inact(imgName) {

   imgOff = eval(imgName + "off.src");
   document [imgName].src = imgOff;

}

