
// preload navigation images:

        if (document.images) {

		services_on = new Image();
                services_on.src = "images/services_on.gif";
                services_off = new Image();
                services_off.src = "images/services_off.gif";
                
                support_on = new Image();
		support_on.src = "images/support_on.gif";
		support_off = new Image();
                support_off.src = "images/support_off.gif";
                
                localdepot_on = new Image();
		localdepot_on.src = "images/depot_on.gif";
		localdepot_off = new Image();
                localdepot_off.src = "images/depot_off.gif";
                
		about_on = new Image();
		about_on.src = "images/about_on.gif";
		about_off = new Image();
		about_off.src = "images/about_off.gif";

		investor_on = new Image();
		investor_on.src = "images/investor_on.gif";
		investor_off = new Image();
		investor_off.src = "images/investor_off.gif";

		careers_on = new Image();
		careers_on.src = "images/careers_on.gif";
		careers_off = new Image();
		careers_off.src = "images/careers_off.gif";

		news_on = new Image();
		news_on.src = "images/news_on.gif";
		news_off = new Image();
		news_off.src = "images/news_off.gif";

		contact_on = new Image();
		contact_on.src = "images/contact_on.gif";
		contact_off = new Image();
		contact_off.src = "images/contact_off.gif";


              
                
}
                        
function hiLite(imgID,changeID) {
                        
        if (document.images) {
        document.images[imgID].src = eval(changeID + ".src");
        return true;
        }
}


