window.addEvent('domready', function() {
var myAccordion = new Accordion($('menu'), 'h2.menuheader', 'div.menucontent', {
opacity:true,
display: -1,
duration: 300,
alwaysHide: true,
onActive: function(contentheader, content){
	contentheader.setStyle('color', 'black');
		contentheader.setStyle('cursor', 'pointer');
	
		contentheader.setStyle('font-weight', 'bold');
},
onBackground: function(contentheader, content){
	contentheader.setStyle('color', 'white');
	contentheader.setStyle('cursor', 'pointer');
	contentheader.setStyle('font-weight', 'normal');
	contentheader.setStyle('padding-bottom', '10px');

}
	
});
});
/*
window.addEvent('domready', function() {
var myAccordion = new Accordion($('primary'), 'h2.entry-title', 'div.post-content', {
opacity:true,
display: -1,
duration: 300,
alwaysHide: true,

		onActive: function(contentheader, content){
			contentheader.setStyle('font-weight', 'bold');
		},
		onBackground: function(contentheader, content){
			contentheader.setStyle('font-weight', 'bold');
		}
});
});*/
