Inscricao = ({
	openForm:function()
	{
		$('div#placeForm').fadeIn('normal',function(){
			$('div#formInscricao').fadeIn('slow');
		});
	},
	closeForm:function()
	{
		$('div#formInscricao').fadeOut('slow',function(){
			$('div#placeForm').fadeOut('normal');			
		});
	},
	sendForm:function()
	{
		if($('input#nome').val()=='' | $('input#dataNascimento').val()=='' || $('input#email').val()=='')
		{
			alert("Os campos marcados com * são obrigatórios, verifique os dados inseridos e tente novamente");
		}
		else
		{
			var parametros = $('form input[@type=text], form input[@type=radio][@checked], form select').serialize();
			$.ajax({
				type:'post',
				url:'inscricao.php',
				data:parametros,
				complete:function(retorno){
					alert(retorno.responseText);
					Inscricao.closeForm();
				}
			}); 
		}
	}
}); 