if (document.images) {      // Active Images
    nav_home_on = new Image();
    nav_home_on.src = "/images/nav/on/home.gif";
    nav_news_on = new Image();
    nav_news_on.src = "/images/nav/on/news.gif";
    nav_brian_on = new Image();
    nav_brian_on.src = "/images/nav/on/brian.gif";
    nav_tom_on = new Image();
    nav_tom_on.src = "/images/nav/on/tom.gif";
    nav_pat_on = new Image();
    nav_pat_on.src = "/images/nav/on/pat.gif";
    nav_bikes_on = new Image();
    nav_bikes_on.src = "/images/nav/on/bikes.gif";
    nav_schedule_on = new Image();
    nav_schedule_on.src = "/images/nav/on/schedule.gif";
    nav_results_on = new Image();
    nav_results_on.src = "/images/nav/on/results.gif";
    nav_sponsor_on = new Image();
    nav_sponsor_on.src = "/images/nav/on/sponsorship.gif";
    nav_gallery_on = new Image();
    nav_gallery_on.src = "/images/nav/on/gallery.gif";
    nav_links_on = new Image();
    nav_links_on.src = "/images/nav/on/links.gif";
    nav_contact_on = new Image();
    nav_contact_on.src = "/images/nav/on/contact.gif";
    nav_ourTeam_on = new Image();
    nav_ourTeam_on.src = "/images/nav/on/ourTeam.gif";
    nav_forSale_on = new Image();
    nav_forSale_on.src = "/images/nav/on/forSale.gif";
    nav_forum_on = new Image();
    nav_forum_on.src = "/images/nav/on/forum.gif";

    nav_home_off = new Image();
    nav_home_off.src = "/images/nav/off/home.gif";
    nav_news_off = new Image();
    nav_news_off.src = "/images/nav/off/news.gif";
    nav_brian_off = new Image();
    nav_brian_off.src = "/images/nav/off/brian.gif";
    nav_tom_off = new Image();
    nav_tom_off.src = "/images/nav/off/tom.gif";
    nav_pat_off = new Image();
    nav_pat_off.src = "/images/nav/off/pat.gif";
    nav_bikes_off = new Image();
    nav_bikes_off.src = "/images/nav/off/bikes.gif";
    nav_schedule_off = new Image();
    nav_schedule_off.src = "/images/nav/off/schedule.gif";
    nav_results_off = new Image();
    nav_results_off.src = "/images/nav/off/results.gif";
    nav_sponsor_off = new Image();
    nav_sponsor_off.src = "/images/nav/off/sponsorship.gif";
    nav_gallery_off = new Image();
    nav_gallery_off.src = "/images/nav/off/gallery.gif";
    nav_links_off = new Image();
    nav_links_off.src = "/images/nav/off/links.gif";
    nav_contact_off = new Image();
    nav_contact_off.src = "/images/nav/off/contact.gif";
    nav_ourTeam_off = new Image();
    nav_ourTeam_off.src = "/images/nav/off/ourTeam.gif";
    nav_forSale_off = new Image();
    nav_forSale_off.src = "/images/nav/off/forSale.gif";
    nav_forum_off = new Image();
    nav_forum_off.src = "/images/nav/off/forum.gif";

	// 2005 images

    nav_2005home_on = new Image();
    nav_2005home_on.src = "/images/nav/2005on/home.jpg";
    nav_2005news_on = new Image();
    nav_2005news_on.src = "/images/nav/2005on/news.jpg";
    nav_2005bikes_on = new Image();
    nav_2005bikes_on.src = "/images/nav/2005on/bikes.jpg";
    nav_2005schedule_on = new Image();
    nav_2005schedule_on.src = "/images/nav/2005on/schedule.jpg";
    nav_2005results_on = new Image();
    nav_2005results_on.src = "/images/nav/2005on/results.jpg";
    nav_2005sponsors_on = new Image();
    nav_2005sponsors_on.src = "/images/nav/2005on/sponsors.jpg";
    nav_2005gallery_on = new Image();
    nav_2005gallery_on.src = "/images/nav/2005on/gallery.jpg";
    nav_2005links_on = new Image();
    nav_2005links_on.src = "/images/nav/2005on/links.jpg";
    nav_2005contact_on = new Image();
    nav_2005contact_on.src = "/images/nav/2005on/contact.jpg";
    nav_2005teamBSR_on = new Image();
    nav_2005teamBSR_on.src = "/images/nav/2005on/teamBSR.jpg";
    nav_2005forSale_on = new Image();
    nav_2005forSale_on.src = "/images/nav/2005on/forSale.jpg";
    nav_2005forum_on = new Image();
    nav_2005forum_on.src = "/images/nav/2005on/forum.jpg";

    nav_2005home_off = new Image();
    nav_2005home_off.src = "/images/nav/2005off/home.jpg";
    nav_2005news_off = new Image();
    nav_2005news_off.src = "/images/nav/2005off/news.jpg";
    nav_2005bikes_off = new Image();
    nav_2005bikes_off.src = "/images/nav/2005off/bikes.jpg";
    nav_2005schedule_off = new Image();
    nav_2005schedule_off.src = "/images/nav/2005off/schedule.jpg";
    nav_2005results_off = new Image();
    nav_2005results_off.src = "/images/nav/2005off/results.jpg";
    nav_2005sponsors_off = new Image();
    nav_2005sponsors_off.src = "/images/nav/2005off/sponsors.jpg";
    nav_2005gallery_off = new Image();
    nav_2005gallery_off.src = "/images/nav/2005off/gallery.jpg";
    nav_2005links_off = new Image();
    nav_2005links_off.src = "/images/nav/2005off/links.jpg";
    nav_2005contact_off = new Image();
    nav_2005contact_off.src = "/images/nav/2005off/contact.jpg";
    nav_2005teamBSR_off = new Image();
    nav_2005teamBSR_off.src = "/images/nav/2005off/teamBSR.jpg";
    nav_2005forSale_off = new Image();
    nav_2005forSale_off.src = "/images/nav/2005off/forSale.jpg";
    nav_2005forum_off = new Image();
    nav_2005forum_off.src = "/images/nav/2005off/forum.jpg";

}

// Function to 'activate' images.
function nav_on(imgName) {
        if (document.images) {
            document[imgName].src = eval("nav_" + imgName + "_on.src");
        }
}
         
// Function to 'deactivate' images.
function nav_off(imgName) {
        if (document.images) {
            document[imgName].src = eval("nav_" + imgName + "_off.src");
        }
}

// Function to open a gallery window.

function openGalleryWindow(url, galleryName) {
    window.open(url,galleryName,"width=800,height=700,resizable=yes,scrollbars=yes"); 
}

function doNothing() {
    var b;
}
