function outImages() {
                        document[outImages.arguments["0"]].src = outImages.arguments["1"];
}
function overImages() {
                        document[overImages.arguments["0"]].src = overImages.arguments["1"];
}

// onLoad時に呼び出す。初期状態では空実装。
function init() {
	preLoad();
}

// 画像ファイルのプレロード
function preLoad() {
	var img = new Array();
		img[0] = new Image();
		img[0].src = "./img/menu/over/over.gif";
}
function inImg(img){
//	background.src=img[0];
if(iIE4){
	img.background=null;
}
if(iNN4){
	//alert("test");
	document.layers["img"].background.src="./tes.gif";
}
//	alert(document.img.background);
}

function outImg(img){
//	background.src="./img/menu/menu.gif";
	img.background="./img/menu/over/over.gif";
//	document.tes.background.src="./img/menu/over/over.gif";
//	alert('name=' + name + "\npath=" + path);
}


function tdOvrA(target)
{
	target.className = 'hover_a';
}
function tdOut(target)
{
	target.className = 'nomal';
}

function getDate(){
	myDate = new Date();
	theHours = myDate.getHours();
	theMinutes = myDate.getMinutes();
	theSeconds = myDate.getSeconds();
	theDate = myDate.getDate();
	theMonth = myDate.getMonth() + 1;
	list(theMonth);
	for (var i=0; i <= 31 ; i++) {
		if(theDate == i){
		document.write(theMonth + "月" + theDate +"日" + theHours + "時" + theMinutes + "分現在<br>" + time[i]);
		break;
		}
}
}