// JavaScript Document
window.addEvent('domready', function(){
			var leftcolumn = new Accordion('div.menu_list', 'div.start_menu', {
				show: 'none',
				alwaysHide: true,
				start: 'all-closed',
				duration: 500,
				opacity: false,
				onActive: function(toggler, element){
					toggler.setStyle('background', 'url(/images/design/left/menu_list_active.gif) no-repeat left top');
				},

				onBackground: function(toggler, element){
					toggler.setStyle('background', 'url(/images/design/left/menu_list.gif) no-repeat left top');
				}

			}, $('leftcolumn'));
			var content = new Accordion('h2.accordion_title', 'div.accordion_content', {
				show: 'none',
				alwaysHide: true,
				start: 'all-closed',
				duration: 500,
				opacity: false,
				onActive: function(toggler, element){
					toggler.setStyle('background', 'url(/images/design/content/active_title.gif) no-repeat 5px 17px');
				},

				onBackground: function(toggler, element){
					toggler.setStyle('background', 'url(/images/design/content/title.gif) no-repeat 5px 17px');
				}
			}, $('content'));
});


