$(document).ready(function(){
	$("a[href*='#']").slideScroll({   
	interval: 5, // 10〜20あたり   
	easing: 1.6 // 0.4〜2.0くらいまで   
	});

	$("#sidebar").scrollFollow( { 
		speed: 1000, 
		offset: 60, 
		onText: 'Disable Follow', 
		offText: 'Disable Follow' 
	} ); 
	$("#main_contents span a").addClass("highslide");
});

$(function(){
$("#stylesheet").attr({href:$.cookie('style')});
});
function changecss(cssurl){
$('#stylesheet').attr({href:cssurl});
$.cookie('style',cssurl,{expires:30,path:'/'});
}

function ShowNowYear() {
var n=new Date();
var st=n.getTime();
var now = new Date();
document.write(now.getFullYear());
}