function thisYear() {
	weeks=new Array("日","月","火","水","木","金","土");
	today=new Date();
	y=today.getFullYear();
	m=today.getMonth()+1;
	d=today.getDate();
	w=weeks[today.getDay()];
	document.write(y);
	document.close();
}



$(function() {
// for エラー: jQuery.dequeue is not a function
( function( $ ) {
$.dequeue = function( a , b ){
return $(a).dequeue(b);
};
})( jQuery );
});



$(document).ready(function() {

	$('#scrollPageTop a').click(function() {
		$('#container').ScrollTo(1000, 'easeout');
		return false;
	});

});

