/*
	$Id: javascript.js,v1 $

	Ki2 Corporation Japan'sWEB
	Copyright (c) 2007. Ki2 Corporation Japan
	Create and Design by Seiki Nishijima

======================================================================
  Memo
  

======================================================================
*/


/*------------------------------------
  画像読み込み
-------------------------------------*/
if (navigator.appVersion > "3") {
	noneCU = new Image(); noneCU.src = '../switch/head_mail.gif';
	noneSM = new Image(); noneSM.src = '../switch/head_sitemap.gif';
	noneFQ = new Image(); noneFQ.src = '../switch/head_faq.gif';

	headCU = new Image(); headCU.src = '../switch_c/head_mail.gif';
	headSM = new Image(); headSM.src = '../switch_c/head_sitemap.gif';
	headFQ = new Image(); headFQ.src = '../switch_c/head_faq.gif';
	headKa = new Image(); headKa.src = '../switch_c/head_ki2ola.gif';
	headKd = new Image(); headKd.src = '../switch_c/head_ki2old.gif';

	oranMa = new Image(); oranMa.src = '../switch/main_menu01m.gif';
	oranMd = new Image(); oranMd.src = '../switch/main_menu01c.gif';

	mageMa = new Image(); mageMa.src = '../switch/main_menu02m.gif';
	mageMd = new Image(); mageMd.src = '../switch/main_menu02c.gif';

	deepMa = new Image(); deepMa.src = '../switch/main_menu03m.gif';
	deepMd = new Image(); deepMd.src = '../switch/main_menu03c.gif';

	cyanMa = new Image(); cyanMa.src = '../switch/main_menu04m.gif';
	cyanMd = new Image(); cyanMd.src = '../switch/main_menu04c.gif';


	SM010a = new Image(); SM010a.src = '../switch_c/menu01a.gif';
	SM010d = new Image(); SM010d.src = '../switch_c/menu01d.gif';
	SM020a = new Image(); SM020a.src = '../switch_c/menu02a.gif';
	SM020d = new Image(); SM020d.src = '../switch_c/menu02d.gif';
	SM030a = new Image(); SM030a.src = '../switch_c/menu03a.gif';
	SM030d = new Image(); SM030d.src = '../switch_c/menu03d.gif';
	SM040a = new Image(); SM040a.src = '../switch_c/menu04a.gif';
	SM040d = new Image(); SM040d.src = '../switch_c/menu04d.gif';


	SM011a = new Image(); SM011a.src = '../switch_c/submenu11a.gif';
	SM011d = new Image(); SM011d.src = '../switch_c/submenu11d.gif';
	SM012a = new Image(); SM012a.src = '../switch_c/submenu12a.gif';
	SM012d = new Image(); SM012d.src = '../switch_c/submenu12d.gif';
	SM013a = new Image(); SM013a.src = '../switch_c/submenu13a.gif';
	SM013d = new Image(); SM013d.src = '../switch_c/submenu13d.gif';
}


/*------------------------------------
  通常イメージチェンジ
-------------------------------------*/
function icT01(imgName3,imgNum3) {
	if (navigator.appVersion > "3") {
		document.images[imgName3].src = eval(imgNum3 + '.src');
	}
}

/*------------------------------------
  ヒット時２カ所切り替え
-------------------------------------*/
function icT02(imgName1,imgNum1,imgName2,imgNum2) {
	if (navigator.appVersion > "3") {
		document.images[imgName1].src = eval(imgNum1 + '.src');
		document.images[imgName2].src = eval(imgNum2 + '.src');
    }
}

/*------------------------------------
  オープンウィンド１、窓サイズ500*415　スクロール有り／リサイズ可
-------------------------------------*/
function oW01(url) {
	window.open(url,"_blank","menubar=no,toolbar=no,location=no,directories=no,status=yes,scrollbars=auto,resizable=yes,width=500,height=415");
}


