        if (document.images) {            // Active Images
            img0on = new Image();
            img0on.src = "images/logo_on.gif";
            img0off = new Image();
            img0off.src = "images/logo_off.gif";
            img1on = new Image();
            img1on.src = "images/company_on.gif";
            img1off = new Image();
            img1off.src = "images/company_off.gif";
            img2on = new Image();
            img2on.src = "images/testimonials_on.gif";
            img2off = new Image();
            img2off.src = "images/testimonials_off.gif";
            img3on = new Image();
            img3on.src = "images/contact_on.gif";
            img3off = new Image();
            img3off.src = "images/contact_off.gif";
            img4on = new Image();
            img4on.src = "sections/finished_small_on.jpg";
            img4off = new Image();
            img4off.src = "sections/finished_small_off.jpg";
            img5on = new Image();
            img5on.src = "sections/oars_small_on.jpg";
            img5off = new Image();
            img5off.src = "sections/oars_small_off.jpg";
            img6on = new Image();
            img6on.src = "sections/kits_small_on.jpg";
            img6off = new Image();
            img6off.src = "sections/kits_small_off.jpg";
            img7on = new Image();
            img7on.src = "sections/books_small_on.jpg";
            img7off = new Image();
            img7off.src = "sections/books_small_off.jpg";
            img8on = new Image();
            img8on.src = "sections/fasteners_small_on.jpg";
            img8off = new Image();
            img8off.src = "sections/fasteners_small_off.jpg";
	      img9on = new Image();
            img9on.src = "sections/fittings_small_on.jpg";
            img9off = new Image();
            img9off.src = "sections/fittings_small_off.jpg";
           	img10on = new Image();
            img10on.src = "sections/miscellaneous_small_on.jpg";
            img10off = new Image();
            img10off.src = "sections/miscellaneous_small_off.jpg";
            img11on = new Image();
            img11on.src = "images/sale_on.gif";
            img11off = new Image();
            img11off.src = "images/sale_off.gif";
            img12on = new Image();
            img12on.src = "images/talk_on.gif";
            img12off = new Image();
            img12off.src = "images/talk_off.gif";
            }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

