
<!--
/* マウスオーバースクリプト（ナビゲーション上の変数） */
	var imageDir = dir+"navi/";
	var ActionOn = "_on.gif";
	var ActionOff = "_off.gif";
	var imageDir2 = dir2+"images/";
	
/* マウスオーバースクリプト（ナビゲーション上で使用） */
function imageOn(imageName){
	
	img1 = new Image();
	img1.src = imageDir + imageName + ActionOn;
	
	document[imageName].src=img1.src;
	}

function imageOff(imageName){
	img2 = new Image();
	img2.src = imageDir + imageName + ActionOff;

	document[imageName].src=img2.src;
}


/* マウスオーバースクリプト（通常ページ上で使用） */
function imageOn2(imageName){
	
	img1 = new Image();
	img1.src = imageDir2 + imageName + ActionOn;
	
	document[imageName].src=img1.src;
	}

function imageOff2(imageName){
	img2 = new Image();
	img2.src = imageDir2 + imageName + ActionOff;

	document[imageName].src=img2.src;
}
// -->