var timeMenu;
var timeMenuSer;

function exibeTela(id)
{
    if(document.getElementById(id).style.display == 'none')
    {
        document.getElementById(id).style.display = 'block';
        //jQuery('#'+id).show('slow');
    }   
}

function exibeTelaSer(id)
{
    if(document.getElementById(id).style.display == 'none')
    {
        document.getElementById(id).style.display = 'block';
        //jQuery('#'+id).show('slow');
    }
       
}

function fechaSubMenu(id)
{
    document.getElementById(id).style.display = 'none';
    //jQuery('#'+id).hide('fast');
}

function fechaSubMenuSer(id)
{
    document.getElementById(id).style.display = 'none';
    //jQuery('#'+id).hide('fast');
}

function fechaMenu(id)
{
    timeMenu  = window.setTimeout('fechaSubMenu("'+id+'")', 300 );
}

function paraTimeOut()
{
    window.clearInterval(timeMenu);
}

function paraTimeOutSer()
{
    window.clearInterval(timeMenuSer);
}

function fechaMenuSer(id)
{
    timeMenuSer = window.setTimeout('fechaSubMenuSer("'+id+'")', 300 );
}


