/*
	copyright by kikuchi takeshi
	kikuchi@gmail.com
*/
var url_array = new Array(
	"http://www.chuo.urayama.ac.jp/toyama/rinen.html",
	"http://www.chuo.urayama.ac.jp/toyama/fcourse1.html",
	"http://www.chuo.urayama.ac.jp/toyama/fkoushi.html",
	"http://www.chuo.urayama.ac.jp/toyama/annai06_01.html",
	"http://www.chuo.urayama.ac.jp/toyama/kousyu.html",
	"https://chuo.urayama.ac.jp/toyama/contact/",
	"http://www.chuo.urayama.ac.jp/toyama/notice.html",
	"http://www.chuo.urayama.ac.jp/toyama/privacypolicy.html",
	"http://www.chuo.urayama.ac.jp/toyama/sitemap.html"
	);

function fOver(obj, bool){
	var overImage = "url('https://chuo.urayama.ac.jp/toyama/img/bg4_1.gif')";
	var outImage = "url('https://chuo.urayama.ac.jp/toyama/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];
}
