//-- DIV SHOW
function divshow(setNo){
	var imgPath = "image/";
	var divList = new Array(
		 "menuId0"
		,"menuId1"
		,"menuId2"
	);
	if (document.getElementById) {
		for(var i = 0;i<divList.length;i++){
			document.getElementById(divList[i]).style.display = 'none';
		}
		document.getElementById(divList[setNo]).style.display = '';
	}
	return false;
}
