I have some JQuery that pops up a JQuery Dialog (http://docs.jquery.com/UI/Dialog) box when you hover over an image like so:
    $(document).ready(function() {
        $("img").hover(function() {
             $("#dialog").dialog();
        });
    });
I have 2 questions 1. When i close the dialog and then hover over an image again the dialog dosn't reappear, how can i fix that 1. How can i pop up the box only if the user hovers over the image for a couple of seconds
 
     
     
    