$(function(){
    $(".info_mami").fadeOut(0.1);
    $(".exhibition_mami img").hover(function(){
        $(this).animate({
            width : 300,
            height : 264
        },
        200,null,
        function(){
            $(this).parent().find(".info_mami").fadeIn(200);
        });

    },function(){
        $(this).parent().find(".info_mami").fadeOut(200,
            function(){
                $(this).parent().find("img").animate({
                    width : 250,
                    height : 220
                }, 200);
           }
        );
        $(".exhibition_hira img").animate({
            width : 250,
            height : 216
        }, 200);
    });

});

$(function(){
    $(".info_hira").fadeOut(0.1);
    $(".exhibition_hira img").hover(function(){
        $(this).animate({
            width : 300,
            height : 264
        },
        200,null,
        function(){
            $(this).parent().find(".info_hira").fadeIn(200);
        });

    },function(){
        $(this).parent().find(".info_hira").fadeOut(200,
            function(){
                $(this).parent().find("img").animate({
                    width : 250,
                    height : 220
                }, 200);
           }
        );
        $(".exhibition_mami img").animate({
            width : 250,
            height : 216
        }, 200);
    });

});

