// プルダウン
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//

// 画像切り替え
function showhide(bigPhoto,thumb,id,roopCNT) {
    for (i = 1; i <= roopCNT; i++) {
	   document.getElementById(bigPhoto + i).style.display = 'none';
	   document.getElementById(thumb + i).style.background = 'url(img/detail/bg-photoEriaList.gif)';
	   }
	//アクティブ時
	document.getElementById(bigPhoto + id).style.display = 'block';
	document.getElementById(thumb + id).style.background = 'url(img/detail/bg-photoEriaList-on.gif)';
	}
