/* *******************************************
*  Customize to your specific menu,
*  one group per main menu item
*
*  menu[#] = new menuGroup(# submenu links);
*  menu[#].item[#] = new menuItem(link text, URL, optional title);
*
********************************************** */

function setMenuVars() {
	mCount = 8;   // set to the number of main menu items
	menu   = new makeArray(mCount);

	// First menu
	menu[1] = new menuGroup(3); // News
	menu[1].item[1] = new menuItem("Most Recent", "http://www.thecomas.com/news/", "");
	menu[1].item[2] = new menuItem("Press Articles", "http://www.thecomas.com/news/press/", "");
	menu[1].item[3] = new menuItem("Archives", "http://www.thecomas.com/news/archives/", "");

	// Second menu
	menu[2] = new menuGroup(0); // Shows

	// Third menu
	menu[3] = new menuGroup(5); // Pictures
	menu[3].item[1] = new menuItem("Most Recent", "http://www.thecomas.com/pictures/", "");
	menu[3].item[2] = new menuItem("Conductor DVD","http://www.thecomas.com/pictures/conductor/index.php","");
	menu[3].item[3] = new menuItem("Tour Pics","http://www.thecomas.com/pictures/tour/index.php","");
	menu[3].item[4] = new menuItem("Gig Posters","http://www.thecomas.com/pictures/posters/index.php","");
	menu[3].item[5] = new menuItem("Andy's Drawings","http://www.thecomas.com/pictures/andy_art/index.php","");

	// Fourth menu
	menu[4] = new menuGroup(5); // Media
	menu[4].item[1] = new menuItem("New Media","http://www.thecomas.com/media/","");
	menu[4].item[2] = new menuItem("Noises","http://www.thecomas.com/media/noises");
	menu[4].item[3] = new menuItem("Unreleased Recording of The Week","http://www.thecomas.com/media/noises/urotw/","");
	menu[4].item[4] = new menuItem("Videos","http://www.thecomas.com/media/video/","");
	menu[4].item[5] = new menuItem("Pictures","http://www.thecomas.com/pictures/","");

	// Fifth menu
	menu[5] = new menuGroup(3); // The Band
	menu[5].item[1] = new menuItem("Main","http://www.thecomas.com/band/","");
	menu[5].item[2] = new menuItem("Band Biography","http://www.thecomas.com/band/bio/index.php","");
	menu[5].item[3] = new menuItem("Discography","http://www.thecomas.com/band/discography/index.php","");

	// Sixth menu
	menu[6] = new menuGroup(5); // The Fans
	menu[6].item[1] = new menuItem("What's New?","http://www.thecomas.com/fans/","");
	menu[6].item[2] = new menuItem("Message Board","http://www.thecomas.com/phpbb/index.php","");
	menu[6].item[3] = new menuItem("Q&A Session","http://www.thecomas.com/fans/qa/","");
	menu[6].item[4] = new menuItem("Fan Stuff","http://www.thecomas.com/fans/stuff/index.php","");
	menu[6].item[5] = new menuItem("Merchandise","http://www.thecomas.com/fans/merch/index.php","");
	
	// Seventh menu
	menu[7] = new menuGroup(0); // Contact, no submenu for this group
	
	// Eigth menu
	menu[8] = new menuGroup(8); // Boards
	menu[8].item[1] = new menuItem("Main Index","http://www.thecomas.com/phpbb/index.php","Main Index, Log in, Register.");
	menu[8].item[2] = new menuItem("Everything Comas","http://www.thecomas.com/phpbb/viewforum.php?f=1&sid=c4ab4238e16c5a9392edfe62822b3805","If you want to talk about The Comas, this is the place to be.");
	menu[8].item[3] = new menuItem("Everything Not Comas","http://www.thecomas.com/phpbb/viewforum.php?f=2&sid=c4ab4238e16c5a9392edfe62822b3805","Unless your topic is specified in a different forum, this is the place to post it.");
	menu[8].item[4] = new menuItem("Unreleased Songs Discussion","http://www.thecomas.com/phpbb/viewforum.php?f=8&sid=c4ab4238e16c5a9392edfe62822b3805","Discuss the unreleased songs right here as they are put up each week.");
	menu[8].item[5] = new menuItem("Touring | Shows | Gigs","http://www.thecomas.com/phpbb/viewforum.php?f=7&sid=c4ab4238e16c5a9392edfe62822b3805","Discuss shows, find tickets, etc.");
	menu[8].item[6] = new menuItem("Other Bands","http://www.thecomas.com/phpbb/viewforum.php?f=3&sid=c4ab4238e16c5a9392edfe62822b3805","Talk about all other non-Coma related music here.");
	menu[8].item[7] = new menuItem("Technical Questions","http://www.thecomas.com/phpbb/viewforum.php?f=9&sid=c4ab4238e16c5a9392edfe62822b3805","If you have a question about the site or the boards (and the FAQ didn't help), post it here.");
	menu[8].item[8] = new menuItem("Message Board Tyranny","http://www.thecomas.com/phpbb/viewforum.php?f=10&sid=c4ab4238e16c5a9392edfe62822b3805","Learn how not to be banned!");
}