handler=false;
function mostra_sottomenu (){
    if (document.getElementById('ulmedia').style.display=='none'){
        document.getElementById('ulmedia').style.display='block';
    }
        if(handler)
            window.clearTimeout(handler);
        handler=window.setTimeout(chiudi_sottomenu,3000);
}
function chiudi_sottomenu(){
    if (document.getElementById('ulmedia').style.display=='block'){
        document.getElementById('ulmedia').style.display='none';
    }
    window.clearTimeout(handler);
    handler=false;
}
