// JavaScript Document
window.addEvent('domready', function() {

			var accordion = new Accordion('p.to', 'div.el', {
				display: 0,
				opacity: true, 
				duration: 900,
				fixedHeight: 430,
				transition: Fx.Transitions.linear,
 				wait:false,

				onActive: function(toggler, element){
					toggler.setStyle('cursor', 'default');
				},
			 
				onBackground: function(toggler, element){
					toggler.setStyle('cursor', 'pointer');
				}
			}, $('pack'));


});