$(document).ready(function() {
    //    meerkat({
    //        close: '.close-meerkat',
    //        meerkatPosition: 'bottom',
    //        animation: 'show',
    //        animationSpeed: 'slow'
    //    });


    $('div#footer').hoverIntent(
            function () {
                    $(this).attr('revertTo', $(this).height());

                    $(this).find('div.small').fadeOut("slow", function () {
                        $('div.big').fadeIn("slow");

                    });

                    $(this).animate({
                        height: "30px"
                    })
    },
            function () {
                $('div.big').fadeOut("slow", function () {
                    $('div.small').fadeIn("slow");

                });


                var height = $(this).attr('revertTo');
                $(this).animate({
                    height: height + "px"
                })
            });
});

