// JavaScript Document
// ---------------グローバルナビ　サイドバナー-----------------
$(function(){
    $("li 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'));
		}
	}
	);
});
// ---------------スライド-----------------
$(window).load(function() {
  $("#slider").nivoSlider({
	effect : "random",
    captionOpacity : 0.8,
    animSpeed : 1000,
    pauseTime : 5000,
    slices : 6, 
    directionNav : false,
    controlNav : false,
    controlNavThumbs : false
    });
});
// ---------------Back to Top　の　スクロール-----------------
$(document).ready(function() {

	 //トップに戻るをクリックしたら	
	$("#gotoTop a").click(function () {
		//スムーズに上に戻る
		$("body,html").animate({
			scrollTop: 0
		}, 800);
		return false;
	});
	
});
