window.onload=function(){
	
	myStretch = document.getElementsByClassName('openmenu');
	myStretcher = document.getElementsByClassName('scrolling-content');
	
	// setup the accordion elements by clearing display styles	
	myStretcher.each(function(el){
		el.style.display = '';
	});
	
	
var ac = new Fx.Accordion(myStretch,myStretcher,
 
  {
		alwaysHide: true,
		start : 'all-closed',
	
		height: true,
		opacity : true			
	});
}