
setNav = function(){
	var _html = "";
	_html += "<ul>";
	_html += "<li><a href='home.asp' title='Home' class='Home'>Home</a></li>";
	_html += "<li><a href='info.asp' title='Info' class='Info'>Info</a></li>";
	_html += "<li><a href='profile.asp' title='Profile' class='Profile'>Profile</a></li>";
	_html += "<li><a href='discography.asp' title='Discography' class='Discography'>Discography</a></li>";
	_html += "<li><a href='contact.asp' title='Contact' class='Contact'>Contact</a></li>";
	_html += "</ul>";
	document.write(_html);
}

setFoot = function(){
	var _html = "";
	_html += "<p>&copy; mito</p>";
	document.write(_html);
}