// JavaScript Document
var today = new Date();
var weekdayNames = ['日', '月', '火', '水', '木', '金', '土'];
var thisDay = today.getDay();
document.write("(" +weekdayNames[thisDay] + ")");
