var Geral = {

	__construct: function() {
		_this = Geral;

		$("a.lightbox").lightBox();
	}

}

$(document).ready(function(){
	Geral.__construct();
	
	$(".foto-maior img").css('display','none').slideDown();
	$(".ft li a").click(function(){
		var linkfotao = $(this).attr("href");
		$(".foto-maior img").attr('src', linkfotao);
		$(".foto-maior img").fadeTo('', 0.7);
		$(".foto-maior img").fadeTo('', 1);
		return false;					 
	});
	

});