Init = function()
{
	ActivateSubMenu(sMenu, false);

	if (sMenu.length > 0)
		$("Menu" + sMenu).addClassName("Current");
		
	if (sSection.length > 0 && $("Section" + sSection) != null)
		$("Section" + sSection).addClassName("Current");
		
	$("Menu").onmouseout = StartBlur;
	$("Menu").onmouseover = StopBlur;
	$("SubMenu").onmouseout = StartBlur;
	$("SubMenu").onmouseover = StopBlur;


	if ($("Menufrontpage") != null) { $("Menufrontpage").onmouseover = function() { Menu("frontpage") }; }
	if ($("Menufrontpage") != null) { $("Menuabout").onmouseover = function() { Menu("about") }; }
	if ($("Menufrontpage") != null) { $("Menuproducts").onmouseover = function() { Menu("products") }; }
	if ($("Menufrontpage") != null) { $("Menucatalogues").onmouseover = function() { Menu("catalogues") }; }
	if ($("Menufrontpage") != null) { $("Menunews").onmouseover = function() { Menu("news") }; }
	if ($("Menufrontpage") != null) { $("Menuexhibitions").onmouseover = function() { Menu("exhibitions") }; }
	if ($("Menufrontpage") != null) { $("Menujobs").onmouseover = function() { Menu("jobs") }; }
	if ($("Menufrontpage") != null) { $("Menulinks").onmouseover = function() { Menu("links") }; }
	if ($("Menufrontpage") != null) { $("Menucontact").onmouseover = function() { Menu("contact") }; }
	
	if ($("Content").getHeight() > $("Left").getHeight())
		$("Left").style.height = $("Content").getHeight() + "px";
}

window.onload = Init;

ProductSearchFocus = function(input, sOrginalValue)
{
	if (input.value == sOrginalValue)
	{
		input.value = '';
		input.style.color = '#000000';
	}
}

ProductSearchBlur = function(input, sOrginalValue)
{
	if (input.value == '')
	{
		input.value = sOrginalValue;
		input.style.color = '#888888';
	}
}