$(document).ready(function(){

/***********************************************/ 
/* スムーズスクロール */
/***********************************************/ 
$('a[href^=#]').click(function(){
	console.log("hoge")
	$('html,body').animate({scrollTop:0},500);
});

/***********************************************/
/* マウスオーバーで画像を変更
/***********************************************/
$(function () {
	$('a img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('_off', '_on'));
			}, function(){
			if (!$(this).hasClass('currentPage')) {
			$(this).attr('src', $(this).attr('src').replace('_on', '_off'));
		}
	});
});

});
//jQuery Ready End
