/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

window.addEvent('domready', function() {
    var toggleMe =  new Fx.Slide('loginbar',
    {
        duration: 800,
        transition: 'bounce:out'
    }
    );
    toggleMe.hide();
    $('toggler').addEvent('click', function(e) {
        e.stop();
        toggleMe.toggle();
    });
});

