$(document).ready(function(){
	$(".add_coupon").click(function(){
		var element = $(this);
		var id = element.attr('id');
		$.ajax({
			type: "POST",
			url: "actions/contentActions.php",
			data: "id="+id+"&ajaxActionContent=addToCart",
			success: function(msg){
				if(msg!='success'){
					$("#"+id).effect("transfer",{ to: $("#coupons") }, 1000);
					$("#coupons").html('Mis Cupones ('+msg+')');
					//append al footer!!!!
				} else{
					alert('Este cupón ya fue agregado');
				}
			}
		});
	});
	
	$(".remove_coupon").click(function(){
		var element = $(this);
		var id = element.attr('id');
		$.ajax({
			type: "POST",
			url: "../actions/contentActions.php",
			data: "id="+id+"&ajaxActionContent=removeFromCart",
			success: function(msg){
				if(msg!='success'){
					$("#coupons").html('Mis Cupones ('+msg+')');
					$("#coupon_"+id).fadeOut('slow', function() {$(this).remove();});
				} else{
					alert('Este cupón ya fue eliminado');
				}
			}
		});
	});
	
	$(".empty_cart").click(function(){
		var element = $(this);
		$.ajax({
			type: "POST",
			url: "actions/contentActions.php",
			data: "id="+id+"&ajaxActionContent=emptyCart",
			success: function(msg){
				if(msg!='success'){
					$("#coupons").html('Mis Cupones ('+msg+')');
					$(".coupon").fadeOut('slow', function() {$(this).remove();});
				} else{
					alert('No hay cupones');
				}
			}
		});					
	});
});
