function showArtist(artist) {
  $('extra-text').hide();
  $$('.artist').each(Element.hide);
  $$("#" + artist).each(Element.show);
};

function showInfo(info) {
  $$('.info').each(Element.hide);
  $$("#" + info).each(Element.show);
};
