
//------------------------

/*BOXのマウスオーバー*/
function box_m_over(idname){
	var targetmid = (document.getElementById(idname+'_mid').style);
	var targettop = (document.getElementById(idname+'_top').style);
	var targetbtm = (document.getElementById(idname+'_bottom').style);
	targetmid.backgroundImage = "url('/common/images/bg_li_03_on.jpg')";
	targettop.backgroundImage = "url('/common/images/bg_li_01_on.jpg')";
	targetbtm.backgroundImage = "url('/common/images/bg_li_02_on.jpg')";
	document.body.style.cursor="hand";
}

/*BOXのマウスアウト*/
function box_m_out(idname){
	var targetmid = (document.getElementById(idname+'_mid').style);
	var targettop = (document.getElementById(idname+'_top').style);
	var targetbtm = (document.getElementById(idname+'_bottom').style);
	targetmid.backgroundImage = "url('/common/images/bg_li_03.jpg')";
	targettop.backgroundImage = "url('/common/images/bg_li_01.jpg')";
	targetbtm.backgroundImage = "url('/common/images/bg_li_02.jpg')";
	document.body.style.cursor="default";
}



//-----------------------------------------------------------------------------------------


/*会社概要大バナーのマウスオーバー*/
function cngColoron(tgtnum){
	var targetmid = (document.getElementById('bigmid_corp'+tgtnum).style);
	targetmid.backgroundImage = "url('../corp_info/images/bg_rol_on.jpg')";
	document.body.style.cursor="hand";
}

/*会社概要大バナーのマウスアウト*/
function cngColoroff(tgtnum){
	var targetmid = (document.getElementById('bigmid_corp'+tgtnum).style);
	targetmid.backgroundImage = "url('../corp_info/images/bg_rol_off.jpg')";
	document.body.style.cursor="default";
}
