﻿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('normal');

		},

		onBackground: function(menuheader, menucontent){

			menuheader.setStyle('normal');

		}

});

});



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('normal');

		},

		onBackground: function(contentheader, content){

			contentheader.setStyle('normal');

		}

});

});
