window.addEvent('domready', function(){
	var accordion = new Accordion('a.atStart', 'ul.atStart', {
		opacity: false,
		alwaysHide: true,
		display: 100,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#0054a6');
			toggler.setStyle('background-image', 'url(images/data_menu_red.gif)');
			element.setStyle('display','block');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#0054a6');
			toggler.setStyle('background-image', 'url(images/data_menu_orange.gif)');
		}
	}, $('product_menu'));	
	
});