“Si Betty cantara hoy día sería algo parecido a Madonna, algo parecido a Prince, sólo que como mujer. Ella fue el inicio de todo eso cuando cantaba como Betty Davis” – Miles Davis con Quincy Troupe, Miles: The Autobiography
/*
function set(variable){ return variable; }
var mis_categorias = set([2, 27, 4]);
var mis_labels = set([3]);
var mis_generos = set([11, 43]);
$('[name=genres]').each(function(){ $(this).parent().hide();});
mis_generos.forEach(function (e){$('[name=genres][value='+e+']').parent().show();});
$('[name=categories]').each(function(){ $(this).parent().hide();});
mis_categorias.forEach(function (e){$('[name=categories][value='+e+']').parent().show();});*/