//ブラウザのメジャーバージョン
ver = parseFloat(navigator.appVersion.substring(0,1));

//CSSファイル読み替え用
if (ver >= 4) {
	os = navigator.platform.substring(0,3);
	osname = new String();
	timetable = new String();
//OSチェック
	if (os == 'Win') {
		osname = 'win';
	} else {
		osname = 'mac';
	}
//CSSファイル読込み行
	document.write('<LINK REL="stylesheet" HREF="/styles-' + osname + '.css">');
}

