$(document).ready(function() {
	$("div.ex img.intro").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
});
$(function(){
    $("div.ex div.info").fadeOut(0.1);
    $("div.ex img.intro").toggle(function(){
        $(this).animate({
            width : 200,
            height : 200
        },
        500,null,
        function(){
            $(this).parent().find(".info").fadeIn(500);
        });
    },function(){
        $(this).parent().find(".info").fadeOut(200,
            function(){
                $(this).parent().find("img.intro").animate({
                    width : 60,
                    height : 60
                }, 200);
            }
        );
    });
});
