$(document).ready(function () {

    $("#faire_un_don").mouseover(function () {
		clearTimeout(timeoutID);
       $("#move_bar").animate({height:"235px", top:"-40px"}, {queue:false, duration:500});
    });
	
      $("#faire_un_don").mouseout(function () {
      timeoutID = window.setTimeout(function(){
     $("#move_bar").animate({height:"235px", top:"0px"}, {queue:false, duration:500});
     }, 1000)
    });
	  
  });
