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

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


/* -------------------------------------------------- */
/* home                                               */
/* -------------------------------------------------- */
	if ($("#home").length > 0)
	{
		$("#slider").easySlider({
			auto: true,
			continuous: true,
			numeric: true
		});
	}
/* -------------------------------------------------- */
/* contas                                             */
/* -------------------------------------------------- */
	if ($("#contas").length > 0)
	{
		// Categoria Nível 2
		$("#f_CategoriaNivel1").change(function() {
			$.getJSON("_lib/ajax/categoria-nivel-2.php", {cat: this.value}, function(j) {
				$("#f_CategoriaNivel2").attr("disabled", "disabled");

				var options = '';

				if (j.length > 1)
				{
					$("#f_CategoriaNivel2").removeAttr("disabled");
				}

				for (var i = 0; i < j.length; i++)
				{
					options += '  <option value="' + j[i].optionValue + '">' + j[i].optionDisplay + '</option>';
				}

				$("select#f_CategoriaNivel2").html(options);
			})
		})
	}
/* -------------------------------------------------- */
});