
var object = null;
function hideD() {
  object.slideUp('slow');
}

$(document).ready(function() {
  var inthebox=false;

  $('#monCompte h3').mouseenter(function(){
    if (!inthebox){$('#monCompte .dropDown').slideDown('fast');}
    inthebox=true;
  });
  $('#monCompte').mouseleave(function(){
    if(inthebox){$('#monCompte .dropDown').slideUp('slow');}
    inthebox=false;
  });
  $('#monPanier h3').mouseenter(function(){
    if (!inthebox){$('#monPanier .dropDown').slideDown('fast');}
    inthebox=true;
  });
  $('#monPanier').mouseleave(function(){
    object=$('#monPanier .dropDown');
    if(inthebox){setTimeout("hideD()", 1000)}
    inthebox=false;
  });
});
