var existMenu = true;

function initMenu()
{
  
    var showTimer;
    var hideTimer;
	var showTimer2;
    var hideTimer2;
	var showTimer3;
    var hideTimer3;
	
    if (document.getElementById) 
    {
        navRoot = $("showCultura");
        navRoot.onmouseover=function() {
            if(hideTimer != undefined) {
                clearTimeout(hideTimer);
            }
            showTimer = setTimeout("if(!Element.visible('subCultura')){new Effect.Appear('subCultura', {duration: 0.2, queue: {position:'end', scope: 'menu', limit:10} });}", 200);
        }
        navRoot.onmouseout=function() {
            if(showTimer != undefined) {
                clearTimeout(showTimer);
            }
            hideTimer = setTimeout("new Effect.Fade('subCultura', {duration: 0.5, queue: {position:'end', scope: 'menu', limit:10} });", 400);
        }
		
		navRoot2 = $("showNikos");
        navRoot2.onmouseover=function() {
            if(hideTimer2 != undefined) {
                clearTimeout(hideTimer2);
            }
            showTimer2 = setTimeout("if(!Element.visible('subNikos')){new Effect.Appear('subNikos', {duration: 0.2, queue: {position:'end', scope: 'menu', limit:10} });}", 200);
        }
        navRoot2.onmouseout=function() {
            if(showTimer2 != undefined) {
                clearTimeout(showTimer2);
            }
            hideTimer2 = setTimeout("new Effect.Fade('subNikos', {duration: 0.5, queue: {position:'end', scope: 'menu', limit:10} });", 400);
        }
		
		navRoot3 = $("showCursos");
        navRoot3.onmouseover=function() {
            if(hideTimer3 != undefined) {
                clearTimeout(hideTimer3);
            }
            showTimer3 = setTimeout("if(!Element.visible('subCursos')){new Effect.Appear('subCursos', {duration: 0.2, queue: {position:'end', scope: 'menu', limit:10} });}", 200);
        }
        navRoot3.onmouseout=function() {
            if(showTimer3 != undefined) {
                clearTimeout(showTimer3);
            }
            hideTimer3 = setTimeout("new Effect.Fade('subCursos', {duration: 0.5, queue: {position:'end', scope: 'menu', limit:10} });", 400);
        }
		
		
    } 
 
}