// JavaScript Document
$(function(){
    $(".info").fadeOut(0.1);
    $(".lineup img").hover(function(){
        $(this).animate({
            width : 200,
            height : 200
        },
        400,null,
        function(){
            $(this).parent().find(".info").fadeIn(300);
        });
    }/*,function(){
        $(this).parent().find(".info").fadeOut(200,
            function(){
                $(this).parent().find("img").animate({
                    width : 80,
                    height : 80
                }, 300);
            }
        );
    }*/);
});
