function menuwrite(){
	var thispage=this.location.href;
	var str='<ul>';
	
	if (thispage.match('index.html')){
	str+='<li><img src="./images/preview_on.gif" alt="PREVIEW" /></li>';
	}else{
	str+='<li><a href="index.html"><img src="./images/preview.gif" alt="PREVIEW" onmouseover="this.src=\'./images/preview_on.gif\'" onmouseout="this.src=\'./images/preview.gif\'" /></a></li>';
	}
	
	if (thispage.match('exclusive.html')){
	str+='<li><img src="./images/exclusive_on.gif" alt="EXCLUSIVE" /></li>';
	}else{
	str+='<li><a href="exclusive.html"><img src="./images/exclusive.gif" alt="EXCLUSIVE" onmouseover="this.src=\'./images/exclusive_on.gif\'" onmouseout="this.src=\'./images/exclusive.gif\'" /></a></li>';
	}

	if (thispage.match('interview.html')){
	str+='<li><img src="./images/interview_on.gif" alt="INTERVIEW" /></li>';
	}else{
	str+='<li><a href="interview.html"><img src="./images/interview.gif" alt="INTERVIEW" onmouseover="this.src=\'./images/interview_on.gif\'" onmouseout="this.src=\'./images/interview.gif\'" /></a></li>';
	}

	if (thispage.match('inside.html')){
	str+='<li><img src="./images/inside_on.gif" alt="INSIDE HEROES" /></li>';
	}else{
	str+='<li><a href="inside.html"><img src="./images/inside.gif" alt="INSIDE HEROES" onmouseover="this.src=\'./images/inside_on.gif\'" onmouseout="this.src=\'./images/inside.gif\'" /></a></li>';
	}
	
	if (thispage.match('dvd.html')){
	str+='<li><img src="./images/dvd_on.gif" alt="DVD RELEASE" /></li>';
	}else{
	str+='<li><a href="dvd.html"><img src="./images/dvd.gif" alt="DVD RELEASE" onmouseover="this.src=\'./images/dvd_on.gif\'" onmouseout="this.src=\'./images/dvd.gif\'" /></a></li>';
	}
	
str+='</ul>';

	document.write(str);
}
