$(document).ready(function()
{
    $("#flyout .inner-img").css({"margin-top":"230px"});
    $("#flyout li a").hover(
        function()
        {
            $(this).css({'overflow':'visible'});
            $(".inner-img", this).animate({
                'margin-top':'0'
            }, {
                'duration':'500'
            });
        },
        function()
        {
            $(this).css({'overflow':'visible'});
            $(".inner-img", this).animate({
                'margin-top':'230px'
            }, {
                'duration':'500',
                'complete':function()
                {
                    $(this).parent().parent().css({'overflow':'hidden'});
                }
            });
        }
    );
});
