
function onNavMouseOver(item)
{
	item.style.backgroundColor = "#eaeff4"
	item.style.color = "#336699";
	item.style.cursor = "hand";
}

function onNavMouseOut(item)
{
	item.style.backgroundColor = "#ffffff";
	item.style.color = "#005fa9";
	item.style.cursor = "default";
}
function onCalMouseOver(item)
{
	item.style.backgroundColor = "#ffffc0";
	item.style.color = "#000000";
	item.style.cursor = "hand";
}

function onCalMouseOut(item)
{
	item.style.backgroundColor = "#f0f0f0";
	item.style.color = "#000000";
	item.style.cursor = "default";
}

function onListMouseOver(item)
{
	item.style.backgroundColor =  "#eaeff4"
	item.style.color = "#000000";
	item.style.cursor = "hand";
}

function onListMouseOut(item)
{
	item.style.backgroundColor = "#ffffff";
	item.style.color = "#606060";
	item.style.cursor = "default";
}


function onSpecialMouseOver(item)
{
	item.style.cursor = "hand";
}

function onSpecialMouseOut(item)
{
	item.style.cursor = "default";
}
