// JavaScript do formulario

$(document).ready(function(){
	
	//abre a foto
	$('.imgGaleria, .imgGaleria2').click(
		function()
		{
			var img = $(this).attr('fotoGrande');
			$("#popupRetorno").show();
			$("#popupRetorno").animate({opacity:0.5});
			$("#abreFoto").show(600);
			$("#abreFoto").animate({opacity:1});
			$("#abreFoto").html("<img src="+img+"/><img src='torneio/publico/imagem/lightbox-btn-close.gif' class='fechar' />");
		}
	);
	
	//fecha a foto
	$('#popupRetorno, #abreFoto').click(
		function()
		{
			$("#popupRetorno").hide();
			$("#abreFoto").hide();
		}
	);
});


