
window.addEvent('domready', function() {
	
	//create our Accordion instance
	var myAccordion = new Accordion($('accordionHP'), 'div.toggler', 'div.element', {
		opacity: false,
		alwaysHide: true,
		start:'all-closed',
		onActive: function(toggler, element){
			toggler.setStyle('color', '#000000');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#006699');
		}/*,
		onComplete: function(toggler, two, three, four){
        	one.highlight('#5D80C8'); //blue
    		two.highlight('#5D80C8');
    		three.highlight('#5D80C8');
    		four.highlight('#5D80C8'); 
	}*/

	}
	);

	
});