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


		onActive: function(menuheader, menucontent){
			menuheader.setStyle('font-weight', 'normal');
		},
		
		onBackground: function(menuheader, menucontent){
			menuheader.setStyle('font-weight', 'normal');
		}
		
		

		
		
});
});


