﻿$(function(){
	$("[id^=txt_busca]")
	.blur(function(){
		if ($(this).val() == "")
		{
			$(this).val(this.defaultValue)
		}
	})
	.focus(function(){
		if ($(this).val() == this.defaultValue)
		{
			$(this).val("");
		}
	})

	$("[id^=id_c_t_]").change(function(){
		var busca_text = $(this).parents("form").find("[id^=txt_busca]").val();
		if (busca_text != 'Digite o que procura' && busca_text != '') $(this).parents("form").submit();
	});
	
	$("[id^=id_c_t_]").jdrop();
	
	$("[id^=bt_buscar]").click(function() {
		var busca_text = $(this).parents("form").find("[id^=txt_busca]").val();
		if (busca_text != 'Digite o que procura' && busca_text != '') $(this).parents("form").submit();
	})
	
	// Itens Carrinho
	var _topo_car_menu = $("#topo_menu_carrinho");
	var topo_itens_int;
	var topo_itens_rem_int;
	_topo_car_menu.hover(
		function () {			
			clearTimeout(topo_itens_rem_int);
			if ($("#topo_carrinho_itens_area").length == 0) {
				$.ajax({
					url : 'e-commerce/pages/topo_carr_itens.php',
					success : function (ret) {
						$("#topo_carrinho_itens_ph").html(ret);
						showTpCarArea();
					}
				});
			} else
				showTpCarArea();
				
			function showTpCarArea () {
				var	_topo_car_itens = $("#topo_carrinho_itens_area");
				if (_topo_car_itens.find('ul').length == 0) return false;
				
				topo_itens_int = setTimeout(function (){
					var topo_car_menu_pos = _topo_car_menu.position();
					_topo_car_itens.css("top", topo_car_menu_pos.top + 41);
					_topo_car_itens.css("left", topo_car_menu_pos.left-175)
					_topo_car_itens.slideDown(750);
				}, 400);	
			}
		},
		function () {
			topo_itens_rem_int = setTimeout(function (){
				clearTimeout(topo_itens_int);
				$("#topo_carrinho_itens_area").slideUp(350);
			}, 150);
		}
	);
	
	$("#topo .saudacao-text .sair").click(function (e) {
		$.post('e-commerce/actions/cliente.php', 'act=14',
			function () {location.href="index.php";}
		);
		e.preventDefault();
	});
});
