function login(){
  jQuery("#login").show();
}

function loginClose(){
  jQuery("#login").hide();
}

function loginAccedi(){
  jQuery("#loginAccedi").show();
}

function loginCloseAccedi(){
  jQuery("#loginAccedi").hide();
}

jQuery(document).ready(function(){
    var timeoutBuffer, timeoutBuffer2;

    jQuery('.formLogin').hover(
    function(){
      jQuery("#loginAccedi").show();
      clearTimeout(timeoutBuffer);
      clearTimeout(timeoutBuffer2);
    },function(){
      timeoutBuffer2 = setTimeout(function(){jQuery("#loginAccedi").hide();},2000);
    });

    jQuery('#loginAccedi').hover(
    function(){
      clearTimeout(timeoutBuffer);
      clearTimeout(timeoutBuffer2);
    },function(){
      timeoutBuffer = setTimeout(function(){jQuery("#loginAccedi").hide();},2000);
    });


  });

