//
// Page initialisation code called when the staff search page is loaded.
//
function initialise()
{
	//
	// Move the cursor focus to the search text box.
	//
	var searchbox = document.getElementsByName( "searchfor" )[0];
	searchbox.select();
	searchbox.focus();
}
