// jQuery + Simplest Slideshow 画像をクロスフェードで変更するスライドショー
$(function(){
    $('.picture img:gt(0)').hide();
    setInterval(function(){
      $('.picture :first-child').fadeOut()
         .next('img').fadeIn()
         .end().appendTo('.picture');}, 
      6000);
});

/* jQuery + link.active */
$(document).ready(function() {
	if(location.pathname != "/") {
		$('.nav a[href="' + location.pathname + '"]').addClass('active');
	} 
});