/* -------------------------------------------------- */
/* SOURCE CODE                                        */
/* -------------------------------------------------- */

$().ready(function() {
	$('#header').cycle({
		fx:      'fade',
		speed:   500,
		timeout: 2000 
	});


/* -------------------------------------------------- */
/* index.php                                          */
/* -------------------------------------------------- */
	if ($("#init").length > 0)
	{
		$('#destaque-festa').cycle({
			fx:      'fade',
			speed:   500,
			timeout: 5000 
		});


		$('#destaque-apoio').cycle({
			fx:      'fade',
			speed:   500,
			timeout: 3000 
		});
	}
/* -------------------------------------------------- */
/* mural.php                                          */
/* -------------------------------------------------- */
	if ($("#mural").length > 0)
	{
		$("#btnEnviar").click(function() {
			var fNome   = $("#f_Nome").val();
			var fEmail  = $("#f_Email").val();
			var fRecado = $("#f_Recado").val();

			$.post("_lib/ajax/mural.php", { nome: fNome, email: fEmail, recado: fRecado }, 
				function(data) {
					$("#mural-msg").html(data);
				}
			);
		})
	}
/* -------------------------------------------------- */
});