function navHighlight(selection){
	if(selection == 1){
		document.getElementById('Navigation').style.backgroundPosition="0px -32px";
		document.getElementById('Nav_Home').style.color="#0075a1";
	}
	else if(selection == 2){
		document.getElementById('Navigation').style.backgroundPosition="0px -64px";
	}
	else if(selection == 3){
		document.getElementById('Navigation').style.backgroundPosition="0px -96px";
	}
	else if(selection == 4){
		document.getElementById('Navigation').style.backgroundPosition="0px -128px";
	}
	else if(selection == 5){
		document.getElementById('Navigation').style.backgroundPosition="0px -160px";
	}
	else if(selection == 6){
		document.getElementById('Navigation').style.backgroundPosition="0px -192px";
	}
	else if(selection == 7){
		document.getElementById('Navigation').style.backgroundPosition="0px -224px";
	}
}

function navDefault(){
	document.getElementById('Navigation').style.backgroundPosition="0px 0px";
	document.getElementById('Nav_Home').style.color="#44575e";
}

function logoHover(){
	document.getElementById('Navigation').style.backgroundPosition="0px -32px";
	document.getElementById('Nav_Home').style.color="#0075a1";
}

function logoDefault(){
	document.getElementById('Navigation').style.backgroundPosition="0px 0px";
	document.getElementById('Nav_Home').style.color="#44575e";
}

var t;
function startTimer(){
	t = setTimeout("hideAll()", 150);
}
function stopTimer(){
	clearTimeout(t);
}

function yachtsSubnav(){
	stopTimer();
	hideAll();
	document.getElementById("Yachts_Subnav").style.top="233px";
	document.getElementById("Yachts_Subnav").style.left="318px";
}

function boatsSubnav(){
	stopTimer();
	hideAll();
	document.getElementById("Boats_Subnav").style.top="233px";
	document.getElementById("Boats_Subnav").style.left="192px";
}

function servicesSubnav(){
	stopTimer();
	hideAll();
	document.getElementById("Services_Subnav").style.top="233px";
	document.getElementById("Services_Subnav").style.left="394px";
}

function hideAll(){
	document.getElementById("Yachts_Subnav").style.top="-1000px";
	document.getElementById("Yachts_Subnav").style.left="-1000px";
	document.getElementById("Boats_Subnav").style.top="-1000px";
	document.getElementById("Boats_Subnav").style.left="-1000px";
	document.getElementById("Services_Subnav").style.top="-1000px";
	document.getElementById("Services_Subnav").style.left="-1000px";
}