// Behaviors for help.msu.edu


// Focus on the search box only if there is no hash in the URL
function searchFocus(focusId) 
{
	var f = document.getElementById(focusId);
	if(window.location.hash) {
		return false;
	} else {
		f.focus();
		return true;
	}
}




// Run the functions

function setup()
{
	searchFocus("keyword");	
}
