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

$().ready(function() {
/* -------------------------------------------------- */
/* busca                                              */
/* -------------------------------------------------- */
	if ($("#frmBusca").length > 0)
	{
		// Modelos
		$("#f_BMarca").change(function() {
			$.getJSON("_lib/ajax/modelos.php", {marca: this.value}, function(j) {
				$("#f_BModelo").attr("disabled", "disabled");

				var options = '';

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

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

				$("select#f_BModelo").html(options);
			})
		})
	}
/* -------------------------------------------------- */
/* anuncie                                            */
/* -------------------------------------------------- */
	if ($("#anuncie").length > 0)
	{
		if ($("#frmAnuncie").length > 0)
		{
			// Modelos
			$("#f_Marca").change(function() {
				$.getJSON("_lib/ajax/modelos.php", {marca: this.value}, function(j) {
					$("#f_Modelo").attr("disabled", "disabled");

					var options = '';

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

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

					$("select#f_Modelo").html(options);
				})
			})

			$("input[type=file]").stylefile({
				image: "imagens/btn_procurar.gif",
				imageheight : 21,
				imagewidth : 90,
				width : 200
			});
		}
	}
/* -------------------------------------------------- */
});
