//*********************************************
// ロールオーバ
//*********************************************
var ImgDir = (location.href.split("/").length==4)?"/common/images/":"/common/2nd_images/";   //イメージディレクトリ
var ImgEnd = "_on";    //onMouseOver時のイメージファイル名の末尾
var ImgExt = ".jpg";   //拡張子

//=============================================
// ImgOver()
//=============================================
function ImgOver(wk){
	document.images[wk].src = ImgDir + wk + ImgEnd + ImgExt;
}


//=============================================
// ImgOut()
//=============================================
function ImgOut(wk){
	document.images[wk].src = ImgDir + wk + ImgExt;
}
