/* 
	Atico Estudio
	Frameworks: jQuery 1.2.6
*/

var cestaVacia = "Su cesta";
var pedidoRealizado = "Su pedido ha sido realizado";

$(document).ready(function() {
	$('#q').liveUpdate('#posts').focus();
});

$(function() {
	
	$("div.item").click(function() {
		$("div#" + $(this).attr("id") + "Wrapper").slideToggle(1200, 'easeOutExpo');
	});
	
	$("select#listaProveedores").change(function() {
		if (($(this).val()) != ' ') {
			top.location.href = document.URL + "/view/" + $(this).attr('value');
		}
	});
	
	$("div.cesta").click(function() {
		var miCestaItem = '<li>' + $(this).parent().find('div.title').html() + '</li>';

		if ($.trim($('ul#miCesta').find('li').html()) == cestaVacia) $('ul#miCesta').empty();
		
		$('ul#miCesta').append(miCestaItem);
		$('ul#miCesta li').fadeIn('fast');
		
		$(this).html('AÑADIDO');
	});
	
	$("#detallarPedido").click(function() {
		if (($.trim($("#miCesta").find('li').html()) == cestaVacia)
			|| ($.trim($("#miCesta").find('li').html()) == ""))
		{
			alert('Debe agregar al menos un producto');
		}
		else
		{
			var usuario = $("#sessUsuario").html();
			var email = $("#sessEmail").html();
			var detalles = "";
			
			$("#miCesta li").each(function(i) {
				detalles = detalles + $.trim($(this).html().split('>')[1]) + ". UNIDADES: <s>";
			});
			
			top.location.href = document.URL + "/solicitar/usuario:" + usuario + "/email:" + email + "/detalles: " + detalles;
		}
	});
	
	$("div.moreInfo").click(function() {
		$(this).parent().find('div.descripcion').slideToggle('slow');
	});
	
	$("ul#miCesta").click(function(ev) {
		var $el = $(ev.target);
		
		if ($el.is('li') && ($el.html() != cestaVacia))
		{
			$el.fadeOut('fast', function() {
				$el.remove();
			});
		}
	});
	
	$("div.vaciarCesta").click(function() {
		$("ul#miCesta").fadeOut('fast', function() { $(this).html(cestaVacia).fadeIn('fast'); })
	});
	
	$('#product-manager').click(function() {
		$('.single-product:hidden:first').slideDown();
	});
	
});

