/*-----------------------------------------------------
	site.js(for SimpleWeb02)
	
	copyright http://www.xtrec.com/
	Author:HISABO
------------------------------------------------------*/

m_text=new Array();
m_text[0]="M E N U";
m_text[1]="H O M E";
m_text[2]="A B O U T";
m_text[3]="B B S";
m_text[4]="D I A R Y";
m_text[5]="L I N K";
m_text[6]="M A I L";
m_text[7]="";
m_text[8]="";
m_text[9]="";

function Menu(index){
    document.menu.textbody.value=m_text[index];
}

function menu_html() {
	document.write('<ul>');
	document.write('<li><a href="home.php" target="sbody"><img src="img/mbody1.gif" alt="HOME" title="HOME" onmouseover="Menu(1)" onmouseout="Menu(0)"></a></li>');
	document.write('<li><a href="about.php" target="sbody"><img src="img/mbody2.gif" alt="ABOUT" title="ABOUT" onmouseover="Menu(2)" onmouseout="Menu(0)"></a></li>');
	document.write('<li><a href="about.php" target="sbody"><img src="img/mbody3.gif" alt="BBS" title="BBS" onmouseover="Menu(3)" onmouseout="Menu(0)"></a></li>');
	document.write('<li><a href="about.php" target="sbody"><img src="img/mbody4.gif" alt="DIARY" title="DIARY" onmouseover="Menu(4)" onmouseout="Menu(0)"></a></li>');
	document.write('<li><a href="about.php" target="sbody"><img src="img/mbody5.gif" alt="LINK" title="LINK" onmouseover="Menu(5)" onmouseout="Menu(0)"></a></li>');
	document.write('<li><a href="cgi/index.php" target="sbody"><img src="img/mbody6.gif" alt="MAIL" onmouseover="Menu(6)" onmouseout="Menu(0)"></a></li>');
	document.write('<li><form name="menu">');
	document.write('<input type="text" name="textbody" value="M E N U">');
	document.write('</form></li>');
	document.write('</ul>');
}
