//=================================================================================================
//	You can delete these three functions if not needed.
//-------------------------------------------------------------------------------------------------
function customBodyLoad( sender )
{
}
//=================================================================================================
function customBodyResize( sender, size )
{
}
//=================================================================================================
function customBodyScroll( sender )
{
}
//=================================================================================================
//Volgende 2 stubs toegevoegd om JS fouten te vermijden
//=================================================================================================
function hideMenu( sender )
{
}
//=================================================================================================
function showMenu( sender )
{
}
//=================================================================================================
var langDropdownTimer;
//=================================================================================================
function showLangDropdown ()
{
	var div = document.getElementById( "divSites" );
	//div.style.display = div.style.display == "none" ? "block" : "none";
	div.style.display = "block";
}
//=================================================================================================
function mouseoverLangDropdown()
{
	clearTimeout(langDropdownTimer);
}
//=================================================================================================
function mouseoutLangDropdown()
{
	langDropdownTimer = setTimeout('document.getElementById("divSites").style.display = "none";' , 1000 );
}
//=================================================================================================
