// main nav

abouton = new Image();
abouton.src = "images/nav/about_on.png";
aboutoff = new Image();
aboutoff.src = "images/nav/about_off.png";

productson = new Image();
productson.src = "images/nav/products_on.png";
productsoff = new Image();
productsoff.src = "images/nav/products_off.png";

buyon = new Image();
buyon.src = "images/nav/buy_on.png";
buyoff = new Image();
buyoff.src = "images/nav/buy_off.png";

baggingon = new Image();
baggingon.src = "images/nav/bagging_on.png";
baggingoff = new Image();
baggingoff.src = "images/nav/bagging_off.png";

presson = new Image();
presson.src = "images/nav/press_on.png";
pressoff = new Image();
pressoff.src = "images/nav/press_off.png";

contacton = new Image();
contacton.src = "images/nav/contact_on.png";
contactoff = new Image();
contactoff.src = "images/nav/contact_off.png";

// products

bobsbeston = new Image();
bobsbeston.src = "images/nav/bobs_best_on.png";
bobsbestoff = new Image();
bobsbestoff.src = "images/nav/bobs_best_off.png";

doubledoodyon = new Image();
doubledoodyon.src = "images/nav/double_doody_on.png";
doubledoodyoff = new Image();
doubledoodyoff.src = "images/nav/double_doody_off.png";

tinytimberon = new Image();
tinytimberon.src = "images/nav/tiny_timber_on.png";
tinytimberoff = new Image();
tinytimberoff.src = "images/nav/tiny_timber_off.png";

maryjanesblendon = new Image();
maryjanesblendon.src = "images/nav/mary_janes_blend_on.png";
maryjanesblendoff = new Image();
maryjanesblendoff.src = "images/nav/mary_janes_blend_off.png";

// about us

ourstoryon = new Image();
ourstoryon.src = "images/nav/our_story_on.png";
ourstoryoff = new Image();
ourstoryoff.src = "images/nav/our_story_off.png";

growgreenon = new Image();
growgreenon.src = "images/nav/grow_green_on.png";
growgreenoff = new Image();
growgreenoff.src = "images/nav/grow_green_off.png";

galleryon = new Image();
galleryon.src = "images/nav/gallery_on.png";
galleryoff = new Image();
galleryoff.src = "images/nav/gallery_off.png";

merchandiseon = new Image();
merchandiseon.src = "images/nav/merchandise_on.png";
merchandiseoff = new Image();
merchandiseoff.src = "images/nav/merchandise_off.png";

// where to buy

retailerson = new Image();
retailerson.src = "images/nav/retailers_on.png";
retailersoff = new Image();
retailersoff.src = "images/nav/retailers_off.png";

shopon = new Image();
shopon.src = "images/nav/shop_on.png";
shopoff = new Image();
shopoff.src = "images/nav/shop_off.png";

bulkon = new Image();
bulkon.src = "images/nav/bulk_on.png";
bulkoff = new Image();
bulkoff.src = "images/nav/bulk_off.png";

// On function
function imgAct(imgName) {
    document[imgName].src = eval(imgName + "on.src");
}

// Off function
function imgInact(imgName) {
    document[imgName].src = eval(imgName + "off.src");
}

