//************************************************************
// 機能：マウスオーバー
// 　マウスオーバー関数
// -----------------------------------------------------------
// 引数：ImgName     <img>タグのname属性
//       toImg       変換後の<img>パス
//************************************************************

// マウスオーバー
function MouseOver(ImgName, toImg){
	ImgName.src = toImg;
}