window.addEvent('domready', function() {
	//create our Accordion instance
	
	var myAccordion = new Accordion($('entry'), 'div.entry-title', 'div.entry-body', {
		opacity: true,
		onActive: function(toggler, element){},
		onBackground: function(toggler, element){}
	});
	
	var myAccordion = new Accordion($('sidenavi'), 'div.sidenavi-title', 'div.sidenavi-list', {
		opacity: true,
		onActive: function(toggler, element){
			toggler.setStyle('background', 'url(http://scoa.ubusuna.com/img/2nd/list_bg.jpg) 0 0 no-repeat');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('background', 'url(http://scoa.ubusuna.com/img/2nd/list_bg.jpg) 0 -40px no-repeat');
		}
	});
	
});