// JavaScript Document
var dropDown = document.getElementById("drop_down");
var drop_list = document.getElementById("search_menu");

dropDown.onmouseover = function(){
	drop_list.style.display="block";
	drop_list.className = "on";
}
dropDown.onmouseout = function(){
	drop_list.className = "off";
	drop_list.style.display="none";
}

function searchMe(str){
	document.formSearch.search_type.value=str;
	drop_list.style.display="none";
	document.getElementById("search_title").innerHTML=str;
}