	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( 
			"Concerts & Events",
			"News",
			"Pictures",
			"Membership",
			"Personnel",
			"Repertoire",
			"History",
			"Financial Support",
			"Resources",
			"Mission Statement",
			"Brochure",
			"Dixieland Band",
			"Humor",
			"Home"
			);


	var hrefs = new Array( 
			"concerts-events.html",
			"news.html",
			"p_and_s.html",
			"membership.html",
			"personnel.html",
			"repertoire.html",
			"history.html",
			"support.html",
			"resources.html",
			"mission.html",
			"./files/BROCHURE.pdf",
			"./dixie/index.html",
			"humor.html",
			"index.html"
			);

	var targets = new Array( 
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self",
			"_self"
			);

	var texts = new Array( 
			"Concerts & Events",
			"News",
			"Pictures & Sounds",
			"Join",
			"Personnel",
			"Repertoire",
			"History",
			"Financial Support",
			"Resources",
			"Mission Statement",
			"Brochure",
			"Dixieland Band",
			"Humor",
			"Home"
			);

	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>\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>') ;

	

