//クイックリンクイメージプリロード
function QuickLinkImage_PreLoad(path){
	//通常時イメージ
	rpath=path;
	outImg=new Array();
	outImg[0]=new Image;	outImg[0].src=rpath+"images/quicklink/ql_toppage.gif";
	outImg[1]=new Image;	outImg[1].src=rpath+"images/quicklink/ql_hello.gif";
	outImg[2]=new Image;	outImg[2].src=rpath+"images/quicklink/ql_aboutcenter.gif";
	outImg[3]=new Image;	outImg[3].src=rpath+"images/quicklink/ql_concept.gif";
	outImg[4]=new Image;	outImg[4].src=rpath+"images/quicklink/ql_techinfo.gif";
	
	//オーバー時イメージ
	overImg=new Array();
	overImg[0]=new Image;	overImg[0].src=rpath+"images/quicklink/ql_toppage_over.gif";
	overImg[1]=new Image;	overImg[1].src=rpath+"images/quicklink/ql_hello_over.gif";
	overImg[2]=new Image;	overImg[2].src=rpath+"images/quicklink/ql_aboutcenter_over.gif";
	overImg[3]=new Image;	overImg[3].src=rpath+"images/quicklink/ql_concept_over.gif";
	overImg[4]=new Image;	overImg[4].src=rpath+"images/quicklink/ql_techinfo_over.gif";
}

//イメージ更新（アウト時）
function outImage(no,imgNm){
	document.images[imgNm].src=outImg[no].src;
}
//イメージ更新（オーバー時）
function overImage(no,imgNm){
	document.images[imgNm].src=overImg[no].src;
}

//クイックリンクジャンプ
	//リンク先宣言
	linkUrl=new Array();
	linkUrl[0]="index.html";
	linkUrl[1]="docs/hello.html";
	linkUrl[2]="docs/aboutcenter.html";
	linkUrl[3]="docs/concept/index.html";
	linkUrl[4]="docs/techinfo/index.html";
	
	//ジャンプファンクション
	function goLocation(gNo){
		location.href=rpath+linkUrl[gNo];
	}