/*	copyright by kikuchi takeshi	kikuchi@gmail.com*/var url_array = new Array(	"http://www.t-fukushi.urayama.ac.jp/kyouiku.html",	"http://www.t-fukushi.urayama.ac.jp/shakai.html",	"http://www.t-fukushi.urayama.ac.jp/boshu.html",	"http://www.t-fukushi.urayama.ac.jp/zaikou.html",	"http://www.t-fukushi.urayama.ac.jp/open-campus/",	"https://t-fukushi.urayama.ac.jp/contact/",	"http://www.t-fukushi.urayama.ac.jp/notice.html",	"http://www.t-fukushi.urayama.ac.jp/privacypolicy.html",	"http://www.t-fukushi.urayama.ac.jp/sitemap.html"	);function fOver(obj, bool){	var overImage = "url('https://t-fukushi.urayama.ac.jp/img/bg4_1.gif')";	var outImage = "url('https://t-fukushi.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];}
