window.addEvent("domready", function() {
	var showSection;
	$$('div[id^=accordianParent]').each(function(section, i) {
		if(unfoldMenuItem == section.get('id').split('-')[1]) {
			showSection = i;
		}
	});
	new Accordion($('accordion'), 'div.accordian_drop_arrow', 'ul.accordian_content', {
		display: -1,
		show: showSection,
		onActive: function(toggler){
			toggler.setStyle('background-position', '-12px 0px');
		},
		onBackground: function(toggler){
			toggler.setStyle('background-position', '0px 0px');
		}
	});
});