// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

Event.addBehavior({  // Um, this could be cleaned up
  'a#show-contents:click' : function(e) {
      $('extended-songs').show();
      $('show-contents').hide();
      $('hide-contents').show()
      return false;
  },
  'a#hide-contents:click' : function(e) {
      $('extended-songs').hide();
      $('show-contents').show();
      $('hide-contents').hide();
      return false
  }
});
