//  Accordion Right Menu Script
//
//    Usage:  for the menu, simply apply a class of 'stretcher' to all  activators (the links that cause the expansion)
//   		and a class of 'display' to the class to be expanded and contracted.  



function init_left_menu(){
		
		var stretchers = document.getElementsByClassName('stretcher'); //div that stretches
		var toggles = document.getElementsByClassName('display'); //h3s where I click on

		//accordion effect
		var myAccordion = new fx.Accordion(
			toggles, stretchers, {opacity: true, duration: 400}
		);


		
}

function init_right_menu(){
		
		var stretchers = document.getElementsByClassName('stretcher1'); //div that stretches
		var toggles = document.getElementsByClassName('display1'); //h3s where I click on

		//accordion effect
		var myAccordion2 = new fx.Accordion(
			toggles, stretchers, {opacity: true, duration: 400}
		);


		
}