// JavaScript Document

function showSub(mydiv){
	var MainDiv = document.getElementById('Nav_BottomRow');
	var aDivs = MainDiv.getElementsByTagName("DIV");
	
	for(i=0;i<aDivs.length;i++){
		
		if(aDivs[i].id !== mydiv ){
			if(aDivs[i].id !== ""){
				aDivs[i].style.display = 'none';
			}
			
		}else{
			aDivs[i].style.display = 'block';
		}
	}
	
}


function swapImage(me, image){
	me.src = "images/" + image;
}

function determinenav(){
 	var sPath = window.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

	switch(sPage){
	case "abriefhistory.asp":
		showSub('SubNav1');
	break;
	
	case "cornishhistory.asp":
		showSub('SubNav1');
	break;
	
	case "billrowe.asp":
		showSub('SubNav1');
	break;
	
	case "commitmenttoquality.asp":
		showSub('SubNav1');
	break;
	
	case "ourcharities.asp":
		showSub('SubNav1');
	break;	
	
	case "productlist.asp":
		showSub('SubNav3');
	break;	
	
	case "breakfast.asp":
		showSub('SubNav3');
	break;		
	
	case "flavours.asp":
		showSub('SubNav3');
	break;		
	
	case "product_detail.asp":
		showSub('SubNav3');
	break;		
	
	case "bread.asp":
		showSub('SubNav3');
	break;		

	case "treats.asp":
		showSub('SubNav3');
	break;	
	
	case "contactus.asp":
		showSub('SubNav6');
	break;	
	
	case "links.asp":
		showSub('SubNav6');
	break;		

	default:
	  
	}	

}

