$(function(){
  // Descricao do animal
  $('.galery dt img').unbind().mouseover(function(){
    $(this).before('<p>'+$(this).attr('alt')+'</p>');
    $(this).parents('dt').find('p').fadeOut(3000,function(){ $(this).parents('li').find('p').remove() });
  });
	// Thumbnails
	$('.galery dd a').unbind().click(function(){
		newImg = $(this).find('img').attr('src');
		newAlt = $(this).find('img').attr('alt');
		$(this).parents('.galery').find('dt img').attr('src',newImg);
		$(this).parents('.galery').find('dt img').attr('alt',newAlt);
		$(this).parents('.galery').find('dt img').before('<p>'+newAlt+'</p>');
    $(this).parents('.galery').find('dt p').fadeOut(3000,function(){ $(this).parents('li').find('p').remove() });
	});
});
