var mc = new MenuCreator();

mc.Start();
mc.Add("Home");
	mc.Start();
mc.End();
mc.Add("Ministries");
	mc.Start();
	mc.Add("Nursery","/nursery.php","");
	mc.Add("Children","/children.php","");
	mc.Add("Youth","/youth.php","");
	mc.Add("Adult","/adult.php","");
	mc.Add("Other Ministries","/other_ministries.php","");
mc.End();
mc.Add("Online Media");
	mc.Start();
	mc.Add("Video On Demand","/video_on_demand.php","");
	mc.Add("Audio On Demand","/audio_on_demand.php","");	
	mc.Add("Podcast","/podcast.php","");
	mc.Add("Live Broadcast","/stream.php","");	
mc.End();
mc.Add("About Us");
	mc.Start();
	mc.Add("Statement of Faith","/statement_of_faith.php","");
	mc.Add("Staff","/staff.php","");
	mc.Add("Map","/map.php","");
	mc.Add("Building Program","/building_program.php","");
mc.End();
mc.Add("Calendar");
  mc.Start();
mc.End();
mc.Add("eBulletin");
  mc.Start();
mc.End();
mc.Add("My Sanctuary");
  mc.Start();
	mc.Add("Member Login","https://secure.accessacs.com/access/memberlogin.aspx?sn=111287","_blank");
	mc.Add("Discussion Forum","/cgi-bin/sbb/YaBB.pl","_blank");
	mc.Add("Online Giving","https://secure.accessacs.com/access/nonmemberlogin.aspx?sn=111287&sc=give","_blank");
	mc.Add("Building Program","/building_program.php","");
mc.End();
mc.Add("Contact Us");
  mc.Start();
  mc.End();
mc.End();
// Your menu ends here

// if you uncomment this the menu will be vertical instead of horizontal
//mc.Vertical();
// if you uncomment this the box will be centered
//mc.Center();
// if you uncomment this you will have to write the first level youself
mc.DoNotWriteFirstLevel();

mc.Draw();
 
