
setup_menu = function()
{	
	var menu_items = document.getElementById("menu").getElementsByTagName("li");

	for (i = 0; i < menu_items.length; i++)
	{
		{
			menu_items[i].onmouseover = function()
			{
				if (this.className.search("_active") == -1)
				{
					this.className += "_active";
				}
			}
			
			menu_items[i].onmouseout = function()
			{
				this.className = this.className.replace("_active", "");
			}
		}
	}
}


function clear_text(textbox)
{
	if (textbox.value == "Enter Search")
		textbox.value = "";
		
	textbox.style.color = "#000000";
}

function default_text(textbox)
{
	if (textbox.value == "")
	{
		textbox.value = "Enter Search";
		textbox.style.color = "#ff0000";
	}
}