if(document.images) {

	dProImgPath = "/www/handycam/images/front/";
	
	var aProImg = new Array();
	
	var aProMenuList = new Array(
		"bt_top_info",
		"bt_top_support",
		"bt_top_qa",
		"bt_top_dl",
		"bt_top_soft",
		"bt_top_pcconnect",
		"bt_top_manual",
		"bt_top_keyword",
		"bt_top_battery",
		"bt_top_customer",
		"bt_top_repair",
		"bt_top_inquiry",
		"bt_top_guide",
		"bt_top_ms",
		"bt_top_memorystick",
		"bt_top_glossary",
		"bt_top_community",
		"bt_top_mypage",
		"bt_top_seminar",
		"bt_top_osinfo",
		"bt_top_tv",
		"bt_top_avchd",
		"bt_hajioyo",
		"bt_top_handbook",
		"bt_top_torisetsu",
		"bt_top_torisetsu_c",
		"bt_top_torisetsu_n",
		"bt_top_torisetsu_p",
		//"bt_top_customer_usb",
		//"bt_line-up_other",
		"bt_top_dvd",
		"bt_xmlhelp",
		"bt_top_vista",
		"btn_qa",
		"btn_ms",
		"btn_mc",
		"btn_os",
		"btn_soft",
		"btn_avchd",
		"btn_dl",
		"btn_guid",
		"btn_handbook",
		"btn_guid2",
		"btn_handbook2",
		"btn_guid_g",
		"btn_feedback",
		"btn_customer",
		"btn_tv",
		"btn_pc",
		"btn_bddvd",
		"btn_directd",
		"btn_before",
		"btn_info",
		"btn_dvd",
		"btn_dvd02",
		"bt_top_makedvd",
		"bt_top_pcimport",
		"bt_top_attsoft"
		
	);
	
	
	for(i = 0 ; i < aProMenuList.length; i++){
		dNum = i
		aProImg[dNum] = new Array();
		aProImg[dNum][0] = new Image();
		aProImg[dNum][0].src = dProImgPath + aProMenuList[i] + ".gif";
		aProImg[dNum][1] = new Image();
		aProImg[dNum][1].src = dProImgPath + aProMenuList[i] + "_on.gif";
	}
	
}


function prochgimg(dName, dNum) {
	
	if(document.images) {
		for(i = 0 ; i < aProMenuList.length; i++){
			if(aProMenuList[i] == dName){
				dImgNum = i;
				break;
			}
		}
		document.images[dName].src = aProImg[dImgNum][dNum].src;
		
	}
}


//最新情報の表示・非表示
var newinfo_flag=0;   //1:表示
function ShowNewInfo()
{
  if (!dHTMLH0){
    dHTMLH0 = "";
  }
  if (!dHTMLH1){
    dHTMLH1 = "";
  }
  if (!dHTMLBUM){
    dHTMLBUM = "";
  }
  if (!dHTMLBUB){
    dHTMLBUB = "";
  }
  if (!dHTMLB){
    dHTMLB = "";
  }
  if (!dHTMLM){
    dHTMLM = "";
  }
  if (!dHTMLF){
    dHTMLF = "";
  }

  if (newinfo_flag==1){
    document.getElementById("moreinfo").innerHTML=dHTMLH0 + dHTMLBUM + dHTMLH1 + dHTMLB + dHTMLF;
    newinfo_flag=0;
  }
  else{
    //すべて表示
    document.getElementById("moreinfo").innerHTML=dHTMLH0 + dHTMLBUB + dHTMLH1 + dHTMLB + dHTMLM + dHTMLF;
    newinfo_flag=1;

  }

}

