var onlinkimg = new Array();
var oflinkimg = new Array();

for (var i = 1; i <= 5 ; i++) {
	onlinkimg[i] = new Image();
	oflinkimg[i] = new Image();
}

onlinkimg[1].src  = "./image/menu01_on.gif";	/* ホーム */
oflinkimg[1].src  = "./image/menu01_of.gif";
onlinkimg[2].src  = "./image/menu02_on.gif";	/* トピックス */
oflinkimg[2].src  = "./image/menu02_of.gif";
onlinkimg[3].src  = "./image/menu03_on.gif";	/* ご予算・コース */
oflinkimg[3].src  = "./image/menu03_of.gif";
onlinkimg[4].src  = "./image/menu04_on.gif";	/* ご相談・お申し込み */
oflinkimg[4].src  = "./image/menu04_of.gif";
onlinkimg[5].src  = "./image/menu05_on.gif";	/* 会社概要 */
oflinkimg[5].src  = "./image/menu05_of.gif";


/*----------------------------------------
/ 画像変更
/ i == ターゲットオブジェクトを表す数字  j == 0 -> On j == 1 -> Off
/---------------------------------------*/
function changeImage(i, j){
	var objtarget = 'linkimage' + i;
	if (j == 0) {
		document[objtarget].src = onlinkimg[i].src;
	} else {
		document[objtarget].src = oflinkimg[i].src;
	}
}


/*----------------------------------------
/ サイズ指定の別ウィンドオープン
/---------------------------------------*/
function openWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
	/* window.open(url,"wopen000","width=616,height=623,resizable=yes,scrollbars=yes,menubar=1"); */
}


/*----------------------------------------
/ サイズ指定の別ウィンドオープン
/---------------------------------------*/
function locationWindow(url) {
	location.href = url;
}
