$(document).ready(function() {
    $('.accessibility').cycle({
		fx: 'fade',
		speed:5000,
        timeout:3000
// choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});

//サイドナビ
$(function() {
   $('#top dd').show();
   $('#top dt a').click(function(){
       $('#top dd').slideUp();
       $(this).parent().next().slideDown();
       return false;
   });
});



$(function() {
	if(location.pathname != "/") {
		var now = location.href.split('/');
		var endDir = now.slice(now.length-2,now.length-1);
		jQuery('.overbox li a[href$="'+endDir+'/"]').addClass('active');
	}
});

