
var topmenu = new Array("http://www.wcfellowship.org", "World Christian Fellowship", 
						"http://www.wcfellowship.org/wcc",  "World Christian Conference",
						"http://www.wcfellowship.org/resources.html", "Resources");

var sidemenu = new Array("http://www.wcfellowship.org/wcc", "World Christian Conference",
						"http://www.wcfellowship.org/prayer.html", "Regional Prayer Fellowships",
						"http://wcfellowship.org/doctrine.html", "About Us",
						"http://wcfellowship.org/contact.html", "Contact Us");

function topmenuOut()
{
	var temp = "<div class=\"topmenu\"> ";

	for (var i=0; i < topmenu.length; i+=2)
	{
		temp +="<span class=\"topmenuitem\">";
		if( (i+1) != (topmenu.length-1))
			temp += "<a class=\"topmenuA\" href=\"";
		else
			temp += "<a class=\"topmenuB\" href=\"";
		temp += topmenu[i];
		temp += "\">" ;
		temp += topmenu[i+1] ;
		temp += "</a>" ;
		if( (i+1) != (topmenu.length-1)) 
			temp += "&nbsp; | &nbsp;";
		temp +=" </span>";
	}

	temp += "</div>";

	document.write(temp);

}


function sidemenuOut()
{
	var temp = "<div class=\"sidemenu\"> <table class=\"sidemenuTable\">  ";

	for (var i=0; i < topmenu.length+1; i+=2)
	{
		temp +="<tr class=\"sidemenuTR\"> <td class=\"sidemenuTD\"> <a class=\"sidemenuA\" href=\"";
		temp += sidemenu[i];
		temp += "\">" ;
		temp += sidemenu[i+1] ;
		temp += "</a> </td> </tr>" ;
	}

	temp += "</table> </div>";

	document.write(temp);

}
