//window.addEvent('domready', function() {
//var myAccordion = new Accordion($('menu'), 'h2.menuheader', 'div.menucontent', {
//opacity:true,
//display: -1,
//duration: 300,
//alwaysHide: true,
//
//		onActive: function(menuheader, menucontent){
//			menuheader.setStyle('font-weight', 'bold');
//		},
//		onBackground: function(menuheader, menucontent){
//			menuheader.setStyle('font-weight', 'bold');
//		}
//});
//});
//
//window.addEvent('domready', function() {
//var myAccordion = new Accordion($('maincol'), 'h2.contentheader', 'div.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');
//		}
//});
//});

$(document).ready(function() {
   $(".menucontent").hide();

$(".menuheader").click(function(){
      $(this).next('.menucontent').slideToggle('400');
	   $(this).addClass('active');
	});
	});

