function getIntDay(){
	var tmNow = new Date();
	var Kazu = 2;
	var intDay = parseInt (tmNow.getTime()/(1000*60*60*24)) - parseInt (tmNow.getTime()/(1000*60*60*24*Kazu)) * Kazu;
	return(intDay);
}
var idy,keyword,back;
idy = getIntDay();
if( idy==0 ){
	keyword='orange';
	back='pink';
}else{
	keyword='blue';
	back='#c080ff';
}
var write_source;

write_source =
		'<table border=1 cellspacing=2 cellpadding=2>\n'

		+ '<tr><th bgcolor=' + keyword + '><font color=white>メニュー</font></th></tr>\n'

		+ '<tr><th nowrap bgcolor=' + back + '><br>\n'
		+ '<a href="WhatsNew.html">最新更新情報</a><br>\n'
		+ '<a href="Contents/Profile/">自己紹介</a><br>\n'
		+ '<a href="Contents/GuestBook/">ゲストブック</a><br>\n'
		+ '<a href="http://www.kitora.org/masanao/Diary/">日記</a><br>\n'
		+ '<a href="http://hp.vector.co.jp/authors/VA013125/Contents/MSX/">ＭＳＸについて</a><br>\n'
		+ '<a href="http://hp.vector.co.jp/authors/VA013125/Contents/Link/">リンク</a><br>\n'
		+ '<a href="Contents/MOS/">通販について</a><br>\n'
		+ '<a href="/">プログラムの部屋</a><br>\n'
		+ '<br><a href="mailto:kitora@qu-bit.com">メールを出す</a></td></tr></table>\n';

document.writeln(write_source);
