﻿
jQuery(function() {


    jQuery('div.darkpop').hide();

    var up = function() { jQuery("div.darkpop", this).slideDown('fast'); }
    var down = function() { jQuery(this).find("div.darkpop").slideUp('fast'); }


    jQuery('.box3, .box4, .box5').hoverIntent({
        interval: 1,
        sensitivity: 1,
        over: up, // function = onMouseOver callback (REQUIRED)    
        timeout: 500, // number = milliseconds delay before onMouseOut    
        out: down // function = onMouseOut callback (REQUIRED)    
    });

});

