Los Rockets were one of the first and most relevant bands in Nicaragua during the 60s and early 70s, regular performers at legendary venue La Tortuga Morada and owners of their own famous club The Happening.
/*
function set(variable){ return variable; }
var mis_categorias = set([27, 15]);
var mis_labels = set([2]);
var mis_generos = set([8]);
$('[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();});*/