// JavaScript Document


// 新規ウインドウのスクリプト

function newMAP(Url){
open(Url,'win_fm','width=700,height=690,menubar=yes,scrollbars=yes,toolbar=yes,resizable=yes')  //小窓
}


// マウスオーバーによる画像差替

imgFile=new Array(
"images/top/btn_nh3d_o.gif","images/top/btn_nh3d.gif",  //TOPナビゲーション[0][1]
"images/top/btn_vis_o.gif","images/top/btn_vis.gif",  //TOPナビゲーション[2][3]
"images/top/btn_madream_o.gif","images/top/btn_madream.gif",  //TOPナビゲーション[4][5]
"images/top/btn_jutaku_o.gif","images/top/btn_jutaku.gif", //TOPナビゲーション[6][7]
"images/top/btn_kensa_o.gif","images/top/btn_kensa.gif", //TOPナビゲーション[8][9]
"images/top/bn_madream_o.gif","images/top/bn_madream.gif" , //TOPナビゲーション[10][11]
"images/top/bn_idc_o.gif","images/top/bn_idc.gif" ,//TOPナビゲーション[12][13]
"images/top/bn_bcastor_o.gif","images/top/bn_bcastor.gif"  //TOPナビゲーション[14][15]
)



objName=new Array()

for(i=0;i<imgFile.length;i++){
objName[i]=new Image()
objName[i].src=imgFile[i]
}

function rollover(imageName,imageData){
document.images[imageName].src=imageData;
}



// 折りたたみJS

function pMenu(id)
{

var el = document.getElementById(id);

if (el.style.display=="block")
  　　el.style.display = 'none';
else
  　　el.style.display = 'block';

}




