/*

Davis Marine Products - TOP Menu Module
Language: JavaScript 1.0

*/


if (document.images) {
 document.about_out_on = new Image();
 document.about_out_on.src = "/images_global/about_out_on.gif";
 document.about_out_off = new Image();
 document.about_out_off.src = "/images_global/about_out_off.gif";
 document.news_out_on = new Image();
 document.news_out_on.src = "/images_global/news_out_on.gif";
 document.news_out_off = new Image();
 document.news_out_off.src = "/images_global/news_out_off.gif";
 document.contact_out_on = new Image();
 document.contact_out_on.src = "/images_global/contact_out_on.gif";
 document.contact_out_off = new Image();
 document.contact_out_off.src = "/images_global/contact_out_off.gif";
 document.support_out_on = new Image();
 document.support_out_on.src = "/images_global/support_out_on.gif";
 document.support_out_off = new Image();
 document.support_out_off.src = "/images_global/support_out_off.gif";
 document.weather_out_on = new Image();
 document.weather_out_on.src = "/images_global/weather_out_on.gif";
 document.weather_out_off = new Image();
 document.weather_out_off.src = "/images_global/weather_out_off.gif";
 document.drive_out_on = new Image();
 document.drive_out_on.src = "/images_global/drive_out_on.gif";
 document.drive_out_off = new Image();
 document.drive_out_off.src = "/images_global/drive_out_off.gif";
 document.marine_in_on = new Image();
 document.marine_in_on.src = "/images_global/marine_in_on.gif";
 document.marine_in_off = new Image();
 document.marine_in_off.src = "/images_global/marine_in_off.gif";
 document.home_out_off = new Image();
 document.home_out_off.src = "/images_global/home_out_off.gif";
 document.home_out_on = new Image();
 document.home_out_on.src = "/images_global/home_out_on.gif";
 document.site_map_out_off = new Image();
 document.site_map_out_off.src = "/images_global/site_map_out_off.gif";
 document.site_map_out_on = new Image();
 document.site_map_out_on.src = "/images_global/site_map_out_on.gif";
}

function imgAct(imgName) {


        if (document.images) {
        	document[imgName].src = eval( "document." + imgName + "_on.src");
        }
}

function imgInact(imgName) {
        if (document.images) {
        document[imgName].src = eval( "document." + imgName + "_off.src");
        }
}

