window.addEvent('domready', function(){
var menBox = $$('.toggle'); //*the toggle is the class set to the toggle div*//
var menBoxOpen = $$('.slide'); //*the menu section*//
var menAccordion = new Accordion(   //*this tells mootools its creating a new accordion.*//
  menBox, menBoxOpen, {
    duration: 500,    //*this is how fast your accordion goes down and up.*//
    opacity: false,   //*leave this alone, trust Me*//
    alwaysHide: true, 'start': 'all-closed',  //*this tells all menus sections to be closed when the page loads*//
	onActive: function(toggler, toggle){
		toggler.setStyle('color', '#d4de33')
	},
	onBackground: function(toggler, toggle){
		toggler.setStyle('color', '#6f8738')
	}
  });

var marginChange = new Fx.Style('loginbox', 'margin-top',{duration:500});
var myLogin = new Fx.Slide('loginbox');
myLogin.hide();

$('login').addEvent('click', function(e){
	e = new Event(e);
	myLogin.toggle();
	e.stop();
});
marginChange.start(0, 20);

});