// JavaScript Document

function menu_action (id, hover)
{
	menu_hover (id, hover);	// the custom script for hover styles
	toggle_drop_down(id, hover);
}

function toggle_drop_down (id, hover)
{
	var drop = document.getElementById("nav_" + id);
	
	
	if (drop)
	{
		if (hover)
			drop.style.display = "";
		else
			drop.style.display = "none";
	}
	
}

function menu_hover ( id, hover )
{	
	var obj = document.getElementById("menu_" + id);
	
	//alert(id);
	
	if (hover)
	{
		obj.style.color = "#B9DFCF";
	}
	else
	{
		obj.style.color	= "white";
	}
}

function item_hover (id, hover)
{	
	var obj = document.getElementById(id);
	
	if (hover)
	{
		obj.style.backgroundColor	= "#408282";
		//obj.style.color				= "#00595B";
	}
	else
	{
		obj.style.backgroundColor	= "#6caeae";
		//obj.style.color				= "#ffffff";
	}
}

function redirect (url)
{
	document.location.href = "http://" + window.location.hostname + url;	
}