/* requires hoverIntent.jquery.js
    => http://cherne.net/brian/resources/jquery.hoverIntent.minified.js
 */

(function($){
    var delay = 400;
    $(document).ready(function(){
        var config = {    
             over: makeTall, // function = onMouseOver callback (REQUIRED)    
             timeout: 200, // number = milliseconds delay before onMouseOut    
             out: makeShort // function = onMouseOut callback (REQUIRED)    
        };
        $(".button").hoverIntent( config );
    });

    function makeTall(){
        $(this).find('.slide').stop().slideToggle(delay);
    }
    function makeShort(){
        $(this).find('.slide').stop().slideToggle(delay);
    }

})(jQuery);
