$('.botonComprar').live('click', function(){
        var enlace = this.href;
        //var uds = this.value;

        $.ajax({
            type: "GET",
            url: enlace,
            data: "ajax=1",
beforeSend: function(){
    tb_remove();
			$(".capaCarrito").html('<div style="text-align:center"><img src="themes/totperlaire/templates/image/load.gif" /></div>')
		},
            success: function(request){
                $(".capaCarrito").html(request);
		eliminarLineaCarro();
   		    actualizarLinea();
            }
        });

        return false;
    })
