$(function() {
	$('ul.accordion ul').hide();
	$('ul.accordion ul.opened').show('slow');
	$('ul.accordion div').click(function(e) {
		$('ul' ,$(this).parent()).toggleClass('opened');
		$('ul' ,$(this).parent()).toggle('slow');
	});
});

$(function(){
	$(".top_navi a").click(function(){
		$('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
		return false;
	})
});

