window.addEvent('load', function() { 
  (function() {
    $$('.show-hidden').each(function(button) {
      button.addEvent('click', function(e) {
        e.stop()
        button.hasClass('active') ? button.removeClass('active') : button.addClass('active')
        new Fx.Reveal($('popup_content').getFirst('.container')).toggle();
      })
    })
  })()
})    