window.addEvent('domready', function(){
	$$('#accordion h3').each(function(el){
	//var name = el.name;
	//var value = el.getValue();
			
		el.addEvent('click', function(e) {
			
			/**
			 * Prevent the submit event
			 */
 			new Event(e).stop();
			
		});
	});

	ael = $E('#accordion h3.active');

	qIndex = $$('#accordion h3').indexOf(ael);
	//qIndex = ael;
	
	var accordion = new Accordion('#accordion h3', '#accordion ul', {
		opacity: false,
		onActive: function(toggler, element){
			//toggler.setStyle('color', '#ff3300');
			//$$('#accordion ul').setStyle('marginBottom', '15px');
			
			//$$('#accordion h3.active').setStyle('marginTop', '0px');
		},
	 
		onBackground: function(toggler, element){
			//toggler.setStyle('color', '#222');
			//$$('#accordion ul').setStyle('marginBottom', '0px');
			//$$('#accordion h3.active').setStyle('marginTop', '10px');
		} ,
		display:-1 
	}, $('accordion'));
	accordion.display(qIndex);
	/* accordion.show(1); */
}); 

