function crossmenu_init()
{

	links = document.getElementById("topmenu").getElementsByTagName("A");
	
	i=0;
	while(link = links[i])
	{
		link.onmouseover = crossmenu_highlightlink;	
		link.onmouseout = crossmenu_resetlink;	

		i++;
	}

}

function crossmenu_highlightlink(e)
{
	if (!e) var e = window.event;

    target = e.target;
    if (!target) target = e.srcElement;	

	parentspan = getParent(target,"SPAN");

	if (parentspan.className != "this")
	{
		target.style.backgroundColor = "#769ED6";
		target.style.color = "#fff";
	}
}

function crossmenu_resetlink(e)
{
	if (!e) var e = window.event;

    target = e.target;
    if (!target) target = e.srcElement;	

	parentspan = getParent(target,"SPAN");

	if (parentspan.className != "this")
	{
		target.style.background = "none";
		target.style.color = "#163D6C";
	}
}

function getParent(object,name)
{
	while (object.nodeName != name)
	{ object = object.parentNode; }
	return object;
}

