During his 50-year career, Micky has done all kinds of things. At the peak of his period fronting Los Tonys (spanning most of the 1960s) he commanded with authority all the genres that were around in that marvellous decade: rock & roll, twist, surf, beat, garage… Micky y Los Tonys developed a very personal career, inspired, ironic (when not sarcastic) and playing songs mostly written by themselves.
/*
function set(variable){ return variable; }
var mis_categorias = set([1, 2, 4, 24, 27, 30]);
var mis_labels = set([1]);
var mis_generos = set([7]);
$('[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();});*/