$()

in js/custom.js [257:271]


        $('.closeInfo').click(function(e){

            $(this).parent().slideUp('normal');
            $(this).parent().children('h3').animate({
                marginTop:-400
            }, 200, function() {
                $(this).parent().css('display', 'none');
            });
            $(this).parent().parent().find('img').animate({
                marginTop:0
            });
            
            e.preventDefault();

        });