<!--

var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var blnOK = false;

if ((bName == "Netscape" && bVer >= 3) || 
	(bName == "Microsoft Internet Explorer" && bVer >= 4) || 
	(document.getElementById)) {
	blnOK = true;
} 
    
if (blnOK) {
    
    img1on = new Image();          
    img1on.src = "images/btn_home_on.gif";       // Active Image

    img1 = new Image();
    img1.src = "images/btn_home.gif";     // Inactive Image

    img2on = new Image();          
    img2on.src = "images/btn_about_on.gif";       // Active Image

    img2 = new Image();
    img2.src = "images/btn_about.gif";     // Inactive Image

    img3on = new Image();          
    img3on.src = "images/btn_history_on.gif";       // Active Image

    img3 = new Image();
    img3.src = "images/btn_history.gif";     // Inactive Image

    img4on = new Image();          
    img4on.src = "images/btn_network_on.gif";       // Active Image

    img4 = new Image();
    img4.src = "images/btn_network.gif";     // Inactive Image
	
	img5on = new Image();          
    img5on.src = "images/btn_products_on.gif";       // Active Image

    img5 = new Image();
    img5.src = "images/btn_products.gif";     // Inactive Image
	
	img6on = new Image();          
    img6on.src = "images/btn_services_on.gif";       // Active Image

    img6 = new Image();
    img6.src = "images/btn_services.gif";     // Inactive Image
	
	img7on = new Image();          
    img7on.src = "images/btn_news_on.gif";       // Active Image

    img7 = new Image();
    img7.src = "images/btn_news.gif";     // Inactive Image
	
	img8on = new Image();          
    img8on.src = "images/btn_specials_on.gif";       // Active Image

    img8 = new Image();
    img8.src = "images/btn_specials.gif";     // Inactive Image
	
	img9on = new Image();          
    img9on.src = "images/btn_promo_on.gif";       // Active Image

    img9 = new Image();
    img9.src = "images/btn_promo.gif";     // Inactive Image
	
	img10on = new Image();          
    img10on.src = "images/btn_events_on.gif";       // Active Image

    img10 = new Image();
    img10.src = "images/btn_events.gif";     // Inactive Image
	
	img11on = new Image();          
    img11on.src = "images/btn_contact_on.gif";       // Active Image

    img11 = new Image();
    img11.src = "images/btn_contact.gif";     // Inactive Image
	
	img12on = new Image();          
    img12on.src = "images/btn_CMShistory_on.gif";       // Active Image

    img12 = new Image();
    img12.src = "images/btn_CMShistory.gif";     // Inactive Image
	
	img13on = new Image();          
    img13on.src = "images/btn_logout_on.gif";       // Active Image

    img13 = new Image();
    img13.src = "images/btn_logout.gif";     // Inactive Image
	
	img14on = new Image();          
    img14on.src = "images/btn_roadpro_on.gif";       // Active Image

    img14 = new Image();
    img14.src = "images/btn_roadpro.gif";     // Inactive Image
	
	img15on = new Image();          
    img15on.src = "images/btn_careers.gif";       // Active Image

    img15 = new Image();
    img15.src = "images/btn_careers_on.gif";     // Inactive Image
}
    
function imgAct(imgName) {
	if (blnOK) {
    	document[imgName].src = eval(imgName + "on.src");
    }
}

function imgInact(imgName) {
	if (blnOK) {
		document[imgName].src = eval(imgName + ".src");
	}
}

// -->
