new Event.observe(window, 'load', initDisplay);

function initDisplay() {
  
}

function effectEnter() {
  $$('.buttons').each(function(element) {
    new Effect.Appear(element, { duration: 0.5, queue: { position: 'end', scope: 'buttons_queue', limit: 4 } });
  });
}
