$(document).ready(function(){
	$('ul#fotos').innerfade({
		speed: 1000,
		timeout: 3000,
		type: 'sequence',
		containerheight: '220px'
	});
	$(".thumbs a").click(function(){
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		$("#largeImg").attr({ src: largePath, alt: largeAlt });
		$("h2 em").html(" (" + largeAlt + ")"); return false;
	});

	$('#gallery a').lightBox();
});
