var now = new Date();
var month = now.getMonth()+1; // 月

// 数値が1桁の場合、頭に0を付けて2桁で表示する指定
if( month >= 1 && month <= 2 ){// 1月から2月の間は冬とする。
cssFileName = "common_winter.css";
}
else if( month >= 3 && month <= 5 ){// 3月から5月の間は春とする。
cssFileName = "common_spring.css";
}
else if( month >= 6 && month <= 8 ){// 6月から8月の間は夏とする。
cssFileName = "common_summer.css";
}
else if( month >= 9 && month <= 11 ){// 9月から11月の間は秋とする。
cssFileName = "common_autumn.css";
}
else if( month >= 12 ){// 12月は冬とする。
cssFileName = "common_winter.css";
}
var domain = location.hostname;//サーバ名取得
//alert(domain);
 var cssFilePath = '<link href=http://'+domain+'/css/'+cssFileName +' rel="stylesheet" type="text/css" />';
 document.write(cssFilePath);
//alert(cssFilePath);


