jQuery(document).ready(function() {
        // hides the slickbox as soon as the DOM is ready
        jQuery('#context').hide();
        jQuery('#quick').hover(function() {
            jQuery('#context').fadeIn(500);
        });
		jQuery('#quick').mouseleave(function(){
			jQuery('#context').delay(4000).fadeOut(500);
		});
        jQuery('#context').mouseleave(function(event) {
                jQuery('#context').fadeOut(500);
        });
    });
