var menuElems=new Array("Home","News","The PFRep","Demo","Download","About Me");
var menuLinks=new Array("home.htm","news/news.htm","pfrep/pfrep.htm","plugin/demo.htm","plugin/download.htm","aboutme/curriculum.htm");

var sgoogle="<!-- Search Google -->\
<center>\
<FORM method=GET action='http://www.google.com/custom'>\
<TABLE bgcolor='#FFFFFF'><tr><td nowrap='nowrap' valign='top' align='center' height='32'>\
<A HREF='http://www.google.com/'>\
<IMG SRC='http://www.google.com/logos/Logo_25wht.gif' border=0 ALT='Google' align='absmiddle'></A>\
<INPUT TYPE=text name=q size=25 maxlength=255 value=''>\
<INPUT type=submit name=sa VALUE='Search'>\
<input type=hidden name=client value='pub-4372074280414850'>\
<input type=hidden name=forid value='1'>\
<input type=hidden name=ie value='ISO-8859-1'>\
<input type=hidden name=oe value='ISO-8859-1'>\
<input type=hidden name=cof value='GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1;'>\
<input type=hidden name=hl value='en'>\
</td></tr></TABLE>\
</FORM>\
</center>\
<!-- Search Google -->";


function drawMenu(myPath)
{
	var i;
	
	for (i=0;i<menuLinks.length;++i) {
		menuLinks[i]=myPath + menuLinks[i];
	}
	
	document.writeln("<TABLE border=0 cellpadding=1 cellSpacing=1 width=\"100%\" bgcolor=white STYLE ='BORDER-BOTTOM: 0px outset; BORDER-COLLAPSE: collapse; BORDER-TOP: 0px outset'>");
	document.writeln("<TBODY>");

	//document.writeln("<TR>");
	//document.writeln("<TD align=left valign=up>");
	//document.writeln("</TD>");
	//document.writeln("<TD colSpan=5 align=right><FONT size=2>");
	//document.writeln(sgoogle);
	//document.writeln("<A title=\"Goto home page\" style=\"TEXT-DECORATION: none\" href=" + menuLinks[0] + ">");
	//document.writeln("The Progressive Fans (Home Page)</A>");
	//document.writeln("</FONT>");
	//document.writeln("</TD></TR>");

	document.writeln("<TR bgcolor=white><TD align='right' colspan=6 rowspan=1>" + sgoogle + "</TD></TR>");	

	document.writeln("<TR align=middle bgcolor=black valign=bottom>");
	
	for (i=0;i<menuElems.length;i++) {
		document.writeln("<TD nowrap='nowrap' width='16%'>"); // width=\"17%\">");
		document.writeln("<FONT face=System color=white>");
		document.writeln("<A style=\"COLOR: white; TEXT-DECORATION: none\"");
		document.writeln("href=" + menuLinks[i] + ">");
		document.writeln(menuElems[i] + "</A>");
		document.writeln("</FONT></TD>");
	}
	
	document.writeln("</TR></TBODY></TABLE>");
}
