var showImageWin = null;

function showImage(path, width, height, title)
{
  showImageWin = window.open('/showImage.php?path=' + path + '&title=' + title, 'Preview', 'resizable=yes,width=' + width + ',height=' + height);
} // end func showImageWin


    $(document).ready(function() {
        var hide = false;
        $(".quickmenu-link").hover(function(){
            if (hide) clearTimeout(hide);
            $("#quickmenu").fadeIn();
        }, function() {
            hide = setTimeout(function() {$("#quickmenu").fadeOut("slow");}, 250);
        });
        
        $("#quickmenu").hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$("#quickmenu").fadeOut("slow");}, 250);
        });
    });
