	var events = ""
	events += '   onMouseOver	= "javascript: this.style.border=\'outset\';" \n' ;
	events += '   onMouseOut	= "javascript: this.style.border=\'none\';" \n' ;
	events += '   onMouseDown	= "javascript: this.style.border=\'inset\';" \n' ;
	events += '   onMouseUp	= "javascript: this.style.border=\'outset\';" \n' ;


	var titles = new Array( 
			"Go to the main page",
			"Calendar",
			"About taekwon-do",
			"What are classes like?",
			"News",
			"For current students",
			"For parents",
			"How do I test for rank?",
			"Patterns",
			"Techniques",
			"&quot;Mr. D.&quot; One-Steps",
			"Photos and Movies",
			"Meet the Black Belts"
			);


	var hrefs = new Array( 
			"index.html",
			"calendar.htm",
			"what_is_tkd.html",
			"what_are_classes_like.html",
			"news.html",
			"students.html",
			"parent_info.html",
			"how_do_I_test_for_rank.html",
			"Patterns.html",
			"Techniques.html",
			"one-steps.html",
			"images.html",
			"bbelts.html"
			);

	var targets = new Array( 
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self"
			);

	var texts = new Array( 
			"Home",
			"Calendar",
			"About Taekwon-do",
			"About Classes",
			"News",
			"Current Students",
			"For Parents",
			"Rank Testing",
			"Patterns",
			"Techniques",
			"&quot;Mr. D.&quot; One-Steps",
			"Photos and Movies",
			"Meet the Black Belts"
			);

	var i;

	document.write( '<table \n') ;

    //document.write( '   onMouseover="over_effect(event,\'outset\',\'bold\')" \n') ;
    //document.write( '   onMouseout="over_effect(event,\'none\',\'normal\')" \n') ;
    //document.write( '   onMousedown="over_effect(event,\'inset\',\'bold\')" \n') ;
    //document.write( '   onMouseup="over_effect(event,\'outset\',\'bold\')" \n') ;


	document.write( '	width		= 200 \n') ;
	document.write( '	cellspacing	= 0 \n') ;
	document.write( '	cellpadding	= 6 \n') ;
	document.write( '	style		= "background-color:#33ffff; border-size:0; " \n') ;
	document.write( '	background	= "images/speckle.jpg">\n') ;
	document.write( '	<tr>\n') ;
	document.write( '		<td class="menutitle">\n') ;
	
	document.write( '		</td>\n') ;
	document.write( '	</tr>\n') ;

	for(i=0; i<hrefs.length; i++) {	
		document.write( '<tr height=10>\n') ;
		document.write( '    <td class="menulines" ' + events + '>\n') ;
		document.write( '        <a \n') ;
		document.write( '            target="' + targets[i] + '"\n') ;
		document.write( '            title="' + titles[i] + '"\n') ;
		document.write( '            href="' + hrefs[i] + '">\n') ;
		document.write( '            ' + texts[i] + '\n') ;
		document.write( '        </a>\n') ;
		document.write( '    </td>\n') ;
		document.write( '</tr>\n') ;
	}

	document.write( '</table>\n') ;
	document.write( '\n') ;
	document.write( '<br><br>') ;

	

