// JavaScript Document

	$(document).ready(function(){
							   
		//Zoom nas imagens
		$('a[rel=zoom]').fancybox({ 
			'zoomSpeedIn': 0, 
			'zoomSpeedOut': 0, 
			'overlayShow': true 
		});
		
		$('#CadastroIndexForm').submit(function(){
			if($('#CadastroEmail').attr('value') == ''){
				alert('Informe seu e-mail');
				return false;
			} 
			if(!$('#CadastroAcaoAdd').attr('checked') && !$('#CadastroAcaoDel').attr('checked')){
				alert('Selecione incluir ou remover');																																
				return false;
			}
			//Guarda o valor do botão
			var btValue = $('#CadastroIndexForm input[type=submit]').attr('value');
			$('#CadastroIndexForm input[type=submit]').attr('value','Enviando...');
			$('#CadastroIndexForm input[type=submit]').attr('disabled','disabled');
			$.post(
				$('#CadastroIndexForm').attr('action'),
				$('#CadastroIndexForm').serialize(),
				function(data){
					alert(data);
					$('#CadastroEmail').attr('value','');
					$('#CadastroAcaoAdd').removeAttr('checked');
					$('#CadastroAcaoDel').removeAttr('checked');
					$('#CadastroIndexForm input[type=submit]').attr('value',btValue);
					$('#CadastroIndexForm input[type=submit]').removeAttr('disabled');
				}
			);
			return false;
		});

		
		$('table.cake-sql-log').click(function(){ $(this).fadeOut('fast')});
		
	});