function favorite(cantActual,cantMaxima,accion,slug){
    if( accion == 'add' && (cantActual == cantMaxima) ) {
        return false;
    }
    else{
        $.ajax({
            type: "POST",
            url: slug+"/favorito",
            data: "",
            dataType: "json",
            success: function(res){
                var img='';
                var span = '<span class="float_right" style="font-size:10px;">'+res.cantFavoritos+'</span>';
                switch(res.proxAccion) {
                    case 'add':
                        img = '<img src="'+res.url+'img/favorite-add-icon.gif" title="Agregar a favoritos"/>';
                        break;
                    case 'remove':
                        img = '<img src="'+res.url+'img/favorite-remove-icon.gif" title="Eliminar de favoritos"/>';
                        break;
                    case 'cant_add':
                        img = '<img src="'+res.url+'img/favorite-cantadd-icon.gif" title="No puedes agregar m&aacute;s favoritos"/>';
                        break;
                    default:
                        img = '<img src="'+res.url+'img/favorite-cantadd-icon.gif" title="No puedes agregar m&aacute;s favoritos"/>';
                        break
                }

                $('#favorito').html(img+span);
            }
        });
    }
}

