window.onload = stackList;

function stackList(){
	if (document.getElementById("snavi")){
		var i=0;
		var idSnavi = document.getElementById("snavi");
		var htULs = idSnavi.getElementsByTagName("ul");
		for (i=0;i<htULs.length;i++){
			if(htULs[i].parentNode.tagName == "LI"){
				htULs[i].style.display = "none";
			}
		}
	}
}


function expand(thisSwitch){
	var hideUL = thisSwitch.parentNode.getElementsByTagName("ul")[0];
	if (hideUL.style.display == "none"){
		thisSwitch.firstChild.src = "/j/shared/shared/images/icon_close.gif";
		thisSwitch.firstChild.alt = thisSwitch.nextSibling.nodeValue+"メニューを閉じます。";
		hideUL.style.display = "block";
		document.getElementsByTagName("body")[0].style.marginBottom = "0";
	}else{
		thisSwitch.firstChild.src = "/j/shared/shared/images/icon_open.gif";
		thisSwitch.firstChild.alt = thisSwitch.nextSibling.nodeValue+"メニューを開きます。";
		hideUL.style.display = "none";
		document.getElementsByTagName("body")[0].style.marginBottom = "1px";
	}
}

function changeLink(){
	var targetPath = '<p><a href="/j/use/ac_on.html"><img src="/j/shared/shared/images/hnavi_func.gif" alt="文字の大きさ・色を変えるには" width="185" height="17" /></a></p>';
	document.write(targetPath)
}

