/* -------------------------------------------------- */
/* SOURCE CODE                                        */
/* -------------------------------------------------- */

$().ready(function() {
	if ($("#frmEuQuero").length > 0)
	{
		$("#f_Opcao").change(function() {
			// Redireciona para a página da cidade escolhida
			window.location.href = $(this).val();
		})
	}


/* -------------------------------------------------- */
/* cadastro                                           */
/* -------------------------------------------------- */
	if ($("#cadastro").length > 0)
	{
		if ($("#frmCadastro").length > 0)
		{
			$("#f_DataNascimento").mask("99/99/9999");
			$("#f_CPF").mask("999.999.999-99");
			$("#f_Telefone").mask("(99) 9999-9999");
			$("#f_CEP").mask("99999-999");

			// Validação
//			$("#frmCadastro").validate({errorElement: "p"});
		}
	}
/* -------------------------------------------------- */
/* cliente                                            */
/* -------------------------------------------------- */
	if ($("#cliente").length > 0)
	{
		$("ul.fotos li a").click(function() {
			var foto = $(this).attr('href');

			$("div.foto").html("<img src=\"" + foto + "\" alt=\"\" />");

			return false;
		})
	}
/* -------------------------------------------------- */
/* escolha                                            */
/* -------------------------------------------------- */
	if ($("#escolha").length > 0)
	{
		if ($("#frmEscolha").length > 0)
		{
			$("#btnOK").click(function() {
				// Redireciona para a página da cidade escolhida
				window.location.href = $("#f_Cidade").val();
			})
		}
	}
/* -------------------------------------------------- */
/* init                                               */
/* -------------------------------------------------- */
	if ($("#init").length > 0)
	{
		$("#slide").Horinaja({capture:'slide',delai:0.5,duree:5,pagination:false});
/*
		$("a.fechar").click(function() {
			$("#popup-natal").hide("fast");

			return false;
		})
*/
	}
/* -------------------------------------------------- */
/* premios                                            */
/* -------------------------------------------------- */
	if ($("#premios").length > 0)
	{
		$("#slide").Horinaja({capture:'slide',delai:0.5,duree:5,pagination:false});
	}
/* -------------------------------------------------- */
});
