window.addEvent('domready', function() {
var myAccordion = new Accordion($('menu'), 'h2.menuheader', 'div.menucontent', {
opacity:true,
display: -1,
duration: 100,
alwaysHide: true,

		onActive: function(menuheader, menucontent){
			menuheader.setStyle('color', '#903');
		},
		onBackground: function(menuheader, menucontent){
			menuheader.setStyle('color', '#1a2005');
		}
});
});

/* window.addEvent('domready', function() {
var myAccordion = new Accordion($('menu'), 'h2.menuheader', 'div.menucontent', {
opacity:true,
display: 0,
duration: 300,
alwaysHide:false,

		onActive: function(contentheader, content){
			contentheader.setStyle('color', '#903');
		},
		onBackground: function(contentheader, content){
			contentheader.setStyle('color', '#1a2005');
		}
});
}); */
