
//COPYRIGHT
function Copyright(dir){
	var Path;
	var d = new Date();
	var Cpytxt = 'Copyright &copy; '+ d.getFullYear() +' Vangi Sculpture Garden Museum. All Rights Reserved.';
	if(dir==0){
		Path = '';
	}else if(dir==1){
		Path = '../';
	}else if(dir==2){
		Path = '../../';
	}
	document.write('<img src="'+Path+'img/copylight.gif" alt="'+Cpytxt+'" title="'+Cpytxt+'">');
}

//GLOBAL NAVI & PULL DOWN MENU
//PullDownMenu(階層,ナビ番号)
function PullDownMenu(dir,navi){
	var allnavi = 7;	//ナビ総数
	var Path;
	var Now = new Array(allnavi);
	if(dir==0){
		Path = '';
	}else if(dir==1){
		Path = '../';
	}else if(dir==2){
		Path = '../../';
	}
	for(i=1;i<=allnavi;i++){
		Now[i] = '';
		if(i==navi){
			Now[i] = ' class="now"';
		}
	}
	

	document.write('<div id="gnavi">');
	document.write('<div id="gnavi_box">');
	document.write('<div><a href="'+Path+'index.html" id="navi1">HOME</a></div><!--');
	document.write('--><div><a href="'+Path+'museum/about.html" id="navi2" onMouseOver="showPull(\'navi2\',\'pull2\',\'show\')" onMouseOut="showPull(\'navi2\',\'pull2\',\'hide\')"'+Now[2]+'>美術館について</a></div><!--');
	document.write('--><div><a href="'+Path+'vangi/collection.html" id="navi3" onMouseOver="showPull(\'navi3\',\'pull3\',\'show\')" onMouseOut="showPull(\'navi3\',\'pull3\',\'hide\')"'+Now[3]+'>常設コレクション</a></div><!--');
	document.write('--><div><a href="'+Path+'kikaku/index.html" id="navi4" onMouseOver="showPull(\'navi4\',\'pull4\',\'show\')" onMouseOut="showPull(\'navi4\',\'pull4\',\'hide\')"'+Now[4]+'>企画展</a></div><!--');
	document.write('--><div><a href="'+Path+'education/workshop.html" id="navi5" onMouseOver="showPull(\'navi5\',\'pull5\',\'show\')" onMouseOut="showPull(\'navi5\',\'pull5\',\'hide\')"'+Now[5]+'>教育普及活動</a></div><!--');
	document.write('--><div><a href="'+Path+'info/access.html" id="navi6" onMouseOver="showPull(\'navi6\',\'pull6\',\'show\')" onMouseOut="showPull(\'navi6\',\'pull6\',\'hide\')"'+Now[6]+'>ご利用案内</a></div><!--');
	document.write('--><div><a href="http://www.clematis-no-oka.co.jp/main.php" id="navi7">クレマチスの丘TOP</a></div><!--');
	document.write('--></div>');
	document.write('</div>');

	document.write('<div id="pull2" onMouseOver="showPull(\'navi2\',\'pull2\',\'show\')" onMouseOut="showPull(\'navi2\',\'pull2\',\'hide\')">');
	document.write('<div><a href="'+Path+'museum/about.html" class="sub1">美術館について</a></div>');
	document.write('<div><a href="'+Path+'museum/architecture.html" class="sub2">美術館設計</a></div>');
	document.write('<div><a href="'+Path+'museum/activity.html" class="sub3">美術館活動</a></div>');
	document.write('</div>');

	document.write('<div id="pull3" onMouseOver="showPull(\'navi3\',\'pull3\',\'show\')" onMouseOut="showPull(\'navi3\',\'pull3\',\'hide\')">');
	document.write('<div><a href="'+Path+'vangi/collection.html" class="sub1">常設コレクション</a></div>');
	document.write('<div><a href="'+Path+'vangi/profile.html" class="sub2">ヴァンジについて</a></div>');
	document.write('<div><a href="'+Path+'vangi/history.html" class="sub3">ヴァンジ年譜</a></div>');
	document.write('</div>');

	document.write('<div id="pull4" onMouseOver="showPull(\'navi4\',\'pull4\',\'show\')" onMouseOut="showPull(\'navi4\',\'pull4\',\'hide\')">');
	document.write('<div><a href="'+Path+'kikaku/index.html" class="sub1">開催中の企画展</a></div>');
	document.write('<div><a href="'+Path+'kikaku/next.html" class="sub2">次回の企画展</a></div>');
	document.write('<div><a href="'+Path+'kikaku/past.html" class="sub3">過去の企画展</a></div>');
	document.write('<div><a href="http://www.clematis-no-oka.co.jp/schedule/calendar.php" class="sub4">スケジュール</a></div>');
	document.write('</div>');

	document.write('<div id="pull5" onMouseOver="showPull(\'navi5\',\'pull5\',\'show\')" onMouseOut="showPull(\'navi5\',\'pull5\',\'hide\')">');
	document.write('<div><a href="'+Path+'education/workshop.html" class="sub1">ワークショップ</a></div>');
	document.write('<div><a href="'+Path+'education/lecture.html" class="sub2">レクチャー</a></div>');
	document.write('</div>');

	document.write('<div id="pull6" onMouseOver="showPull(\'navi6\',\'pull6\',\'show\')" onMouseOut="showPull(\'navi6\',\'pull6\',\'hide\')">');
	document.write('<div><a href="'+Path+'info/access.html" class="sub1">アクセス</a></div>');
	document.write('<div><a href="'+Path+'info/guide.html" class="sub2">ご利用案内</a></div>');
	document.write('<div><a href="'+Path+'info/shop.html" class="sub3">ミュージアムショップ</a></div>');
	document.write('</div>');
}

function showPull(m,n,d){
	if(m){nv = document.getElementById(m);}
	if(n){pul = document.getElementById(n);}
	if(d=='show'){
		if(m){nv.style.backgroundPosition = '0 23px';}
		if(n){pul.style.display = 'block';}
	}
	if(d=='hide'){
		if(m && nv.className != 'now'){nv.style.backgroundPosition = '0 0';}
		if(n){pul.style.display = 'none';}
	}
}

//新規ウインドウ（サイズ変更可能）
function newWin(url, w, h){
	window.open(url, "window2", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + w + ",height=" + h);
}


