$(document).ready(function() {
 
			$('#thumbsFotos li a').click(function(e) {
				fotos($(this).attr('href'));
				e.preventDefault();
			});
			
			var urlFoto = $('#thumbsFotos li:first a').attr('href');
			
			fotos(urlFoto);
	
}); 

function fotos(url) {
	var $img = jQuery('#fotoGrande img:first');
	
	$img.fadeOut('normal', function(){
		$img.attr('src', url);
		$(".carregar").show();
	});

	$img.load(function(){
		$img.fadeIn('normal');
		$(".carregar").hide();
	});
	
}

