/*
	copyright by kikuchi takeshi
	kikuchi@gmail.com
*/
var url_array = new Array(
	"http://www.urayama.ac.jp/aisatu.html",
	"http://www.urayama.ac.jp/f_tandai.html",
	"http://www.urayama.ac.jp/forum/",
	"https://www.urayama.ac.jp/contact/",
	"#",
	"#",
	"http://www.urayama.ac.jp/notice.html",
	"http://www.urayama.ac.jp/privacypolicy.html",
	"http://www.urayama.ac.jp/sitemap.html"
	);

function fOver(obj, bool){
	var overImage = "url('https://www.urayama.ac.jp/img/bg4_1.gif')";
	var outImage = "url('https://www.urayama.ac.jp/img/bg4.gif')";
	var oImage = bool?overImage:outImage;

	if(document.getElementById){
		document.getElementById(obj['id']).style.backgroundImage = oImage;
	} else if(document.all) {
		document.all(obj['id']).style.backgroundColor = oImage;
	} else if(document.layers){
		document.layers[obj['id']].style.backgroundColor = oImage;
	}
}
function fJump(obj){
	var num = Math.floor(obj['id'].charAt(7))-1;
	document.location.href = url_array[num];
}

