function init()
{
	var highlight = _GET("highlight");
	
	if (highlight)
	{
		highlight = decodeURI(highlight);
		
		x = null;
		if (document.getElementById("content") != undefined)
		{
			x = document.getElementById("content");
		}
		else if (document.getElementById("contentHome") != undefined)
		{
			x = document.getElementById("contentHome");
		}
		
		if (x != null)
		{
			highlightText(highlight, "highlighted", x);
		}
	}
	
	if (document.getElementById("nav") != undefined)
	{
		initMenu();
		if (window.attachEvent)
		{
			sfHover();
		}
	}
	
	if (window.g_message != undefined && g_message != "")
	{
		window.alert(g_message);
	}
}

if (window.attachEvent) 
{
	window.attachEvent("onload", init);
}
else
{
	window.onload = init;
}
