// JavaScript Document

/*//////////////////////////////////////////////////////////////////////////
//背景画像切り替え
//////////////////////////////////////////////////////////////////////////*/
var url = 'http://' + location.hostname + '/';

var seasonlist = new Array(
	'winter',// 1月
	'winter',// 2月
	'spring',// 3月
	'spring',// 4月
	'spring',// 5月
	'summer',// 6月
	'summer',// 7月
	'summer',// 8月
	'autumn',// 9月
	'autumn',//10月
	'autumn',//11月
	'winter' //12月
);

var season = new Date();
var mon = season.getMonth();
var imgPath = url + 'common_img/back_' + seasonlist[mon] + '.gif';


window.onload = function(){
	document.body.style.background = "url(" + imgPath + ")";
	document.body.style.backgroundRepeat = "repeat-x";
	if(document.getElementById("map_detail_canvas")){//onload2重対策 2010.10.27
		load();
	}
};



/*//////////////////////////////////////////////////////////////////////////
//コピーライト年表示
//////////////////////////////////////////////////////////////////////////*/
function copyright(){
	var start = 2006;
	var now = new Date();
	var nowyear = now.getFullYear();
	
	if( start == nowyear ){
		document.write( nowyear );
	}else{
		cr_str = start + '-' + nowyear;
		document.write( cr_str );
	}
}
