<!--
function checkMenu(strAddress){

	var objString = new String(strAddress)
	
	if (objString.indexOf("index.htm") >0){
		MM_swapImage('home','','images/nav/home_mover.gif',1);
				
	} else if (objString.indexOf("productsAccessories.htm") >0){
		MM_swapImage('products','','images/nav/products_mover.gif',1);
		MM_swapImage('sub1','','images/nav/prodSub1_mover.gif',1);
		
	} else if (objString.indexOf("productsSuspension.htm") >0){
		MM_swapImage('products','','images/nav/products_mover.gif',1);
		MM_swapImage('sub2','','images/nav/prodSub2_mover.gif',1);
		
	} else if (objString.indexOf("productsPanels.htm") >0){
		MM_swapImage('products','','images/nav/products_mover.gif',1);
		MM_swapImage('sub3','','images/nav/prodSub3_mover.gif',1);
		
	} else if (objString.indexOf("productsMisc.htm") >0){
		MM_swapImage('products','','images/nav/products_mover.gif',1);
		MM_swapImage('sub4','','images/nav/prodSub4_mover.gif',1);
		
	} else if (objString.indexOf("productsUsedparts.htm") >0){
		MM_swapImage('products','','images/nav/products_mover.gif',1);
		MM_swapImage('sub5','','images/nav/prodSub5_mover.gif',1);
		
	} else if (objString.indexOf("tshirts.htm") >0){
		MM_swapImage('tshirts','','images/nav/tshirts_mover.gif',1);
		
	} else if (objString.indexOf("carsforsale.htm") >0){
		MM_swapImage('cars','','images/nav/carsforsale_mover.gif',1);
		
	} else if (objString.indexOf("gallery.htm") >0){
		MM_swapImage('gallery','','images/nav/gallery_mover.gif',1);
		
	} else if (objString.indexOf("links.htm") >0){
		MM_swapImage('links','','images/nav/links_mover.gif',1);
		
	} else if (objString.indexOf("van-insurance.htm") >0){
		
	} else {
		MM_swapImage('home','','images/nav/home_mover.gif',1);
	}

}

checkMenu(window.location);

//-->