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

$().ready(function() {
	$("a#man").live('click', function() {
		$("#categorias").show('slow');

		return false;
	});


/* -------------------------------------------------- */
/* home                                               */
/* -------------------------------------------------- */
	if ($("#home").length > 0)
	{
		$("#slides").easySlider({
			auto: true,
			continuous: true,
			controlsShow: false,
			pause : 5000
		});
	}
/* -------------------------------------------------- */
/* cadastro                                           */
/* -------------------------------------------------- */
	if ($("#cadastro").length > 0)
	{
		if ($("#frmCadastro").length > 0)
		{
			$("#f_DataNascimento").mask("99/99/9999");
			$("#f_CPF").mask("999.999.999-99");
			$("#f_CEP").mask("99999-999");
			$("#f_Telefone").mask("(99) 9999-9999");
		}
	}
/* -------------------------------------------------- */
/* carrinho                                           */
/* -------------------------------------------------- */
	if ($("#carrinho").length > 0)
	{
		var options = {
			url:    '_lib/ajax/carrinho.php',
			target: '#carrinho-content'
		};

		// Atualizar quantidade(s)
		$('#frmCarrinho').live('submit', function() {
			$(this).ajaxSubmit(options);

			return false;
		});

		// Remover produto
		$("a[id^='btnRemover']").live('click', function() {
			id  = $(this).attr('href');
			pos = id.indexOf("#") + 1;
			tam = id.length;
			id  = id.slice(pos, tam);

			// Envia o código para a página de processamento do carrinho
			$.post('_lib/ajax/carrinho.php', { action: 'remover', produto: id }, function(data) {
				$('#carrinho-content').html(data);
			});

			return false;
		});

		// Continuar comprando
		$("#btnContinuarComprando").live('click', function() {
			document.location.href = "./";
		});

		// Fechar o pedido
		$("#btnFecharPedido").live('click', function() {
			document.location.href = "fechar-pedido.php";
		});
	}
/* -------------------------------------------------- */
/* produto                                            */
/* -------------------------------------------------- */
	if ($("#produto").length > 0)
	{
		// Foto 1
		$('#foto1').click(function() {
			$('.foto1').show();
			$('.foto2').hide();

			return false;
		});

		// Foto 2
		$('#foto2').click(function() {
			$('.foto1').hide();
			$('.foto2').show();

			return false;
		});

		// Maiores Informações
		$('#more-info').click(function() {
			if ($('p').css('display') == 'none')
			{
				$('p').show();
			}
			else
			{
				$('p').hide();
			}

			return false;
		});
	}
/* -------------------------------------------------- */
});

window.onload = function () {
/* -------------------------------------------------- */
/* produtos                                           */
/* -------------------------------------------------- */
	if ($("#produtos").length > 0)
	{
		var container = $('.produtos');
		var ul = $('ul', container);

		var itemsWidth = ul.innerWidth() - container.outerWidth();

		$('.slider', container).slider({
			minValue: 0,
			maxValue: itemsWidth,
			handle: '.handle',
			stop: function (event, ui) {
				ul.animate({'left' : ui.value * -1}, 500);
			},
			slide: function (event, ui) {
				ul.css('left', ui.value * -1);
			}
		});
	}
/* -------------------------------------------------- */
};
