$(document).ready(function(){
	$('ul#fotos li:first').show().addClass('show');
	var count = 9999;
	$('ul#fotos li').each(function(){
		count--;
		$(this).css({
			zIndex: count
		});
	});
	current = null;
	$('ul#thumbs li a').bind('click', function(e){
		e.preventDefault();
		if ($(this).attr('href') != current){
			$('p.legenda').each(function(){
				$(this).hide();
			});
			$('ul#fotos li.show').fadeOut(500).removeClass('show');
			_this = this;
			setTimeout(function(){
				$('ul#fotos li.' + $(_this).attr('href')).fadeIn(500).addClass('show');
			}, 515);
			current = $(this).attr('href');
		}
	});
	
	$('ul#fotos li span.hit-foto')
	.mouseover(function(){
		$('p.legenda').slideDown('low');
	})
	.mouseout(function(){
		$('p.legenda').slideUp('low');
	});
});
