i got the following problem: I got a h2, nested in a div with the id : <div id="hidediv1">. 
I got this code 
$("#hidediv1").mouseover(function(){
  $('#hide1').show(500);
});
$("#hidediv1").mouseleave(function(){
  $('#hide1').hide(500);
});
I want it to be, that you have to hover over the div for atleast 1 second to trigger it.
I know, there are several questions on stackoverflow, but i coulnd't apply them to my code. 
Please help!
 Thank you.
 
     
     
    