function initDrop(){
	var navRoot = document.getElementById("quick-find");
	if(navRoot)
	{
		navRoot.onmouseover = function()
		{
			this.className += "hover";
		}
		navRoot.onmouseout = function()
		{
			this.className = this.className.replace("hover","");
		}
	}
}
if (window.attachEvent && !window.opera){
	window.attachEvent("onload", initDrop);
}
