window.addEvent('load', function(){

	var mySlide = new Fx.Slide('login');
	mySlide.hide();
	$('id19').addEvent('click', function(e){
		e = new Event(e);
		mySlide.toggle();
		e.stop();
	});
});

/* the original code looked like this:
	$('toggle').addEvent('click', function(e){
		and in the html code, the a href for the login link had the class "toggle"

but since I am using wayfinder to create the menus, this was easier
	$('id19').addEvent('click', function(e){

*/