window.addEvent('domready', function() {
var accordion = new Accordion('div.year', 'div.yearContent', {
start:'all-closed',
opacity: false,
duration: 100,
alwaysHide: true,
onActive: function(togglers, stretchers){
/*togglers.setStyle('background-color', '#99ccff');*/
},
onBackground: function(togglers, stretchers){
/*togglers.setStyle('background-color', '#6699cc');*/
stretchers.setStyle('height', stretchers.offsetHeight);
$$('div.monthContent').setStyle('height','0');//you close all sub accordion
}
}, $('accordion'));
var accordion1 = new Accordion('div.month', 'div.monthContent', {
start:'all-closed',
opacity: false,
duration: 100,
alwaysHide: true,
onActive: function(togglers, stretchers){
togglers.getParent().setStyle("height", "auto");
},
onBackground: function(togglers, stretchers){
stretchers.setStyle('height',stretchers.offsetHeight);
}
}, $('accordion'));
});