// JavaScript Document


function showSearchBox()
{
	var navfield				= document.getElementById('navfield');
	var searchBoxHTML			= '<form method="post" action="index.php?go=home.doSearch"><input type="text" name="s" /> <input type="submit" value="search"></form>';
	navfield.innerHTML			= searchBoxHTML;
}

function showHoverText(text)
{
	var navfield				= document.getElementById('navfield');
	
	navfield.innerHTML			= text;
}

function clearHoverText()
{
	var navfield				= document.getElementById('navfield');
	
	navfield.innerHTML			= '';
}
