var query;

function searchBarInit() {
	if (!document.getElementById) 
		return false;	
	document.getElementById('searchBarForm').setAttribute("autocomplete", "off");
	document.getElementById("searchBox").setAttribute("autocomplete", "off");
} 

function doSearch() {
	if (document.getElementById("searchBox").value.length > 0) {	
   		setTimeout('$("searchLoading").style.visibility = "visible"', 60); 
   		submittingForm = true;
    }
}