/*
 Governs the growing part of the header
*/
Event.observe(document,'dom:loaded',function(){
    $('MembersBox').hide();

    $('Attendance').on('click',function(){
        new Effect.toggle('MembersBox', 'blind', { transistion: Effect.Transitions.sinoidal, duration: 0.3 });
    });
});

