function gotoTop() {
	window.location.href="index.html";
}

var topUrl = "http://www.earth-be.com/";
var title = "DANCE TROUPE Earth-Be official website*";
function addBookmark() {
	if (window.sidebar) {
		window.sidebar.addPanel(title, topUrl,"");
	} else if( document.all ) {
		window.external.addFavorite( topUrl, title);
	} else if( window.opera && window.print ) {
		return true;
	}
}

function outputGlobalNavi() {
	var homeClass = '';
	var stageClass = '';
	var aboutClass = '';
	var instructorClass = '';
	var galleryClass = '';
	var tweetsClass = '';
	var linksClass = '';
	var subTitleImgTag = '';
	
	var path = location.pathname;
	if(path.indexOf('stage.html') != -1) {
		stageClass = 'active';
		subTitleImgTag = '<img src="images/earth-be_logo_stage.gif" />';
	} else if (path.indexOf('about.html') != -1) {
		aboutClass = 'active';
	} else if (path.indexOf('instructor.html') != -1) {
		instructorClass = 'active';
	} else if (path.indexOf('gallery') != -1) {
		galleryClass = 'active';
	} else if (path.indexOf('tweets') != -1) {
		tweetsClass = 'active';
	} else if (path.indexOf('links.html') != -1) {
		linksClass = 'active';
	} else {
		homeClass = 'active';
	}
	
	document.write('<a href="index.html"><img id="headerLogo" src="images/earth-be_logo.gif" /></a>');
	// document.write(subTitleImgTag);
	document.write('<span id="headerAd">DANCE TROUPE Earth-Be the 6th performance<br />La Terra われわれはどこへ行くのか&nbsp;&nbsp;&nbsp;<span class="text-red"><a href="stage.html">公演決定！</a></span></span>');
	if(isTop) {
		document.write('<div><img id="topBanner" src="images/earth-be2009_1447_w900.JPG" /></div>');
	}
	document.write('<ul class="menu">');
	document.write('  <li title="トップページへ"><a href="index.html" class="' + homeClass + '"><span>Home</span></a></li>');
	document.write('  <li title="舞台情報"><a href="stage.html" class="' + stageClass + '"><span>Stage</span></a></li>');
	document.write('  <li title="Earth-Beとは"><a href="about.html" class="' + aboutClass + '"><span>About</span></a></li>');
	document.write('  <li title="講師紹介"><a href="instructor.html" class="' + instructorClass + '"><span>Instructor</span></a></li>');
	document.write('  <li title="ギャラリー"><a href="gallery.html" class="' + galleryClass + '"><span>Gallery</span></a></li>');
	document.write('  <li title="つぶやき"><a href="tweets.html" class="' + tweetsClass + '"><span>Tweets</span></a></li>');
	document.write('  <li title="リンク"><a href="links.html" class="' + linksClass + '"><span>Links</span></a></li>');
	document.write('  <li title="掲示板"><a href="http://www.number7.jp/bbs/earthbe/index.html" target="_blank"><span>BBS</span></a></li>');
	document.write('  <li id="favorite" onClick="addBookmark();" title="このページをお気に入りに追加します"><a href="#"><span><img src="favicon.ico"/>&nbsp;add to favorite</span></a></li>');
	document.write('</ul>');
}

