//////////////////////////////////////////////////////////////////////////////////////
//メインメニュー サブメニュー//
//////////////////////////////////////////////////////////////////////////////////////

function smartRollover() {
	if(document.getElementsByTagName) {
		var images = document.getElementsByTagName("img");

		for(var i=0; i < images.length; i++) {
			if(images[i].getAttribute("src").match("_n."))
			{
				images[i].onmouseover = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_n.", "_over."));
				}
				images[i].onmouseout = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_over.", "_n."));
				}
			}
		}
	}
}

if(window.addEventListener) {
	window.addEventListener("load", smartRollover, false);
}
else if(window.attachEvent) {
	window.attachEvent("onload", smartRollover);
}

//////////////////////////////////////////////////////////////////////////////////////
//ウィンドウOPEN//
//////////////////////////////////////////////////////////////////////////////////////

function openwin(url,name,w,h){
var nw;
w=700; h=600;
nw=window.open(url,name,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=2,resizable=0,width="+w+",height="+h+"");
}

//////////////////////////////////////////////////////////////////////////////////////
//開閉式ナビ//
//////////////////////////////////////////////////////////////////////////////////////

function windowOpen(id){
	if(document.getElementById(id).style.display=='none'){
		document.getElementById(id).style.display='block';
	}
	else{
		document.getElementById(id).style.display='none';
	}
}

