function fotos(url, legenda) {
	var $img = j('#imgGrande img:first');
	var $legenda = j('#imgGrande .legenda');
	
	$img.fadeOut('normal', function(){
		$img.attr('src', url);
		$legenda.html(legenda);
		j(".carregar").show();
	});
	$img.load(function(){
		$img.fadeIn('normal');
		$legenda.fadeIn('normal');
		j(".carregar").hide();
	});
	
};

j(document).ready(function() {
		
//slideshow

	

//galeria de fotos
j('ul#thumbs li a').click(function(e) {
		fotos(j(this).attr('href'), j(this).attr('title'));
		e.preventDefault();
	});
	
	j('ul#thumbs li a:first').trigger('click');

j("#thumbs").jcarousel();


});

