var menus = new Object();
function func_Load(){
	
}
function wipe(elId){
	if(menus[elId] == false){
		wipeOut(elId);
//		controlMenu(elId,true);
		menus[elId] = true;
	}else{
		wipeIn(elId);
//		controlMenu(elId,false);
		menus[elId] = false;
	}
}
function wipeOut(elId){
	var row = document.getElementById(elId);
	new Effect.Fold(row);
}

function wipeIn(elId) {
	var row = document.getElementById(elId);
	new Effect.BlindDown(row);
}
function controlMenu(strLayer, fType){
//NNの場合
	if (document.layers){
		if (fType){
			document.layers[strLayer].visibility = "show";
		}else{
			document.layers[strLayer].visibility = "hide";	
		}
	}
//IEとNC6の場合
	if (document.getElementById){	
		if (fType){	
			document.getElementById(strLayer).style.visibility="visible";
		}else{
			document.getElementById(strLayer).style.visibility="hidden";
		}
	}
}