function ShowImage(element, imageSrc, descricao) {if ( element ) {$('#imageController ul li').each(function(){$(this).removeClass('active');});$(element).addClass('active');}$('#imageGallery div').addClass('loading').empty();var img = new Image();$(img).load(function(){$(this).hide();$('#imageGallery div').removeClass('loading').append(this);$('#imageGallery div').animate({height: $(img).attr('height'),width:$(img).attr('width')}, 200, function(){$('#imageGallery label').hide();$('#imageGallery label').text(descricao).fadeIn();$(img).fadeIn();});}).error(function(){alert("Imagem não encontrada!");}).attr('src',imageSrc);}$(function(){$('#imageController ul li').click(function(e){e.preventDefault();var src= $(this).find('a').attr('href');var desc = $(this).attr('title');ShowImage(this, src, desc);});});