var t;
function startTimer(){
	t = setTimeout("clearSubNav()", 200);
}
function stopTimer(){
	clearTimeout(t);
}

/*function buyingSubNav(){
	stopTimer();
	clearSubNav();
	document.getElementById('Subnav').innerHTML = "<a href='best-deals.php'>Our Best Deals</a><a href='hargrave-inventory.php?slim=pp281913&cit=true&sm=3'>Pre-Owned Yachts</a><a href='new-inventory.php'>New Inventory</a><a href='hargrave-custom-yachts.php'>Hargraves For Sale</a><a href='monte-fino-yachts.php'>Monte Finos For Sale</a><a href='hargrave-shopper.php'>Personal Shopper</a>";
}

function servicesSubNav(){
	stopTimer();
	clearSubNav();
	document.getElementById('Subnav').innerHTML = "<a href='yacht-valuation.php'>Yacht Valuation</a><a href='crew-services.php'>Crew Services</a><a href='insurance.php'>Insurance</a><a href='finance.php'>Finance</a><a href='dockage.php'>Dockage</a><a href='training-owner-and-crew.php'>Training Owner &amp; Crew</a><a href='surveys-and-inspections.php'>Surveys &amp; Inspections</a><a href='registration.php'>Registration</a>";
}

function aboutSubNav(){
	stopTimer();
	clearSubNav();
	document.getElementById('Subnav').innerHTML = "<a href='jack-hargrave.php'>Jack Hargrave's Legacy</a><a href='offices-and-team.php'>Offices &amp; Team</a><a href='contact-us.php'>Contact Us</a>";
}

function clearSubNav(){
	document.getElementById('Subnav').innerHTML = "";
}*/

function servicesSubNav(){
	stopTimer();
	clearSubNav();
	document.getElementById("Services_Subnav").style.top="159px";
	document.getElementById("Services_Subnav").style.left="696px";
}

function aboutSubNav(){
	stopTimer();
	clearSubNav();
	document.getElementById("About_Subnav").style.top="159px";
	document.getElementById("About_Subnav").style.left="753px";
}

function clearSubNav(){
	document.getElementById("Services_Subnav").style.top="-1000px";
	document.getElementById("Services_Subnav").style.left="-1000px";
	document.getElementById("About_Subnav").style.top="-1000px";
	document.getElementById("About_Subnav").style.left="-1000px";
}



function checkSiteSearch(){
	if(document.getElementById('Site_Keyword').value == ""){
		document.getElementById('Site_Keyword').style.color = "#a3b7be";
		document.getElementById('Site_Keyword').value = "Search our site...";
	}
	else if(document.getElementById('Site_Keyword').value == "Search our site..."){
		document.getElementById('Site_Keyword').style.color = "#333333";
		document.getElementById('Site_Keyword').value = "";
	}
}