// main menu item is the one with 3 elements - folder of submenu (if none, use a space), menu text, menu path
// sub menu item is the one with 2 elements - sub menu text, sub menu path
// If you are using quotations (") or an ampersand (&) you will need to put a backslash (\) in front of it.

arrMenu = new Array (

	new Array(
		new Array("abortion"), //Abortion section
		new Array("Overview", "http://www.rhtp.org/abortion/default.asp", "default"),
		new Array("Mifepristone", "http://www.rhtp.org/abortion/mifepristone/default.asp", "mifepristone"),
		new Array("Misoprostol", "http://www.rhtp.org/abortion/misoprostol/default.asp", "misoprostol"),
		new Array("Methotrexate", "http://www.rhtp.org/abortion/methotrexate/default.asp", "methotrexate"),
		new Array("Manual Vacuum Aspiration", "http://www.rhtp.org/abortion/mva/default.asp", "mva") //last item does not have a comma at the end
	),
	
	new Array(
		new Array("contraception"), //Contraception section
		new Array("Overview", "http://www.rhtp.org/contraception/default.asp", "default"),
		new Array("Emergency Contraception", "http://www.rhtp.org/contraception/emergency/default.asp", "emergency"),
			new Array("Past Correspondence to Government Officials", "http://www.rhtp.org/contraception/emergency/PastActions.asp", "emergency", "PastActions"),
			new Array("EC and Adolescents", "http://www.rhtp.org/contraception/emergency/adolescents.asp", "emergency", "adolescents"),
			new Array("Past Campaigns", "http://www.rhtp.org/contraception/emergency/campaigns.asp", "emergency", "campaigns"),
		new Array("IUDs", "http://www.rhtp.org/contraception/iud/default.asp", "iud"),
			new Array("Types of IUDs", "http://www.rhtp.org/contraception/iud/types.asp", "iud", "types"), //menu text, path, folder, page
			new Array("Myths and Facts about the IUD", "http://www.rhtp.org/contraception/iud/myths.asp", "iud", "myths"),
			new Array("The Intrauterine Device: A Reversible Alternative to Sterilization", "http://www.rhtp.org/contraception/iud/alternative.asp", "iud", "alternative"),
		new Array("Depo Provera", "http://www.rhtp.org/contraception/depoprovera/default.asp", "depoprovera"),
			//new Array("Depo Provera and STD Risk [PDF, 100KB]", "http://www.rhtp.org/std/documents/New%20Research%20Depo%20and%20STD%20Risk.pdf", "documents", "New Research"),
		new Array("Hormonal Contraception", "http://www.rhtp.org/contraception/hormonal/default.asp", "hormonal")
	),
		
	new Array(
		new Array("std"), //STDs section
		new Array("Overview", "http://www.rhtp.org/std/default.asp", "default"),
		new Array("Hormonal Contraception \& STI", "http://www.rhtp.org/std/hormonal/default.asp", "hormonal"),
		new Array("Microbicides", "http://www.rhtp.org/std/microbicides/default.asp", "microbicides"),
		new Array("Cervical Barriers", "http://www.rhtp.org/std/barriers/default.asp", "barriers") //last item does not have a comma at the end
	),
	
	new Array(
		new Array("fertility"), //Fertility section
		new Array("Overview", "http://www.rhtp.org/fertility/default.asp", "default"),
		new Array("Infertility", "http://www.rhtp.org/fertility/infertility/default.asp", "infertility"),
		new Array("Cervical Health", "http://www.rhtp.org/fertility/cervix/RoleofCervix.asp", "cervix"),
		new Array("Environmental Contaminants", "http://www.rhtp.org/fertility/vallombrosa/default.asp", "vallombrosa"),
		new Array("Assisted Reproductive Technologies", "http://www.rhtp.org/fertility/assisted/default.asp", "assisted"),
		new Array("Prenatal Testing", "http://www.rhtp.org/fertility/prenatal/default.asp", "prenatal"),
		new Array("PGD", "http://www.rhtp.org/fertility/pgd/default.asp", "pgd"),
		new Array("Regulations", "http://www.rhtp.org/fertility/regulations/default.asp", "regulations"),
		new Array("Cloning", "http://www.rhtp.org/fertility/cloning/default.asp", "cloning") //last item does not have a comma at the end
	),

	new Array(
		new Array("science"), //Integrity of Science section
		new Array("Overview", "http://www.rhtp.org/science/default.asp", "default"),
		new Array("Susan Wood: FDA Hero Speaking Tour", "http://www.rhtp.org/science/SusanWoodRoadShow.asp", "SusanWoodRoadShow"),
		new Array("Integrity of Science Working Group", "http://www.rhtp.org/science/group/default.asp", "group"),
		new Array("Attacks on Science", "http://www.rhtp.org/science/attacks/default.asp", "attacks") //last item does not have a comma at the end
	),

	new Array(
		new Array("news"), //News & Publications section
		new Array("Overview", "http://www.rhtp.org/news/default.asp", "default"),
		new Array("Press Releases", "http://www.rhtp.org/news/pr/default.asp", "pr"),
		new Array("RHTP in the News", "http://www.rhtp.org/news/articles/default.asp", "articles"),
		new Array("RHTP in the Blogs", "http://www.rhtp.org/news/media/default.asp", "media"),
		new Array("RHTP Publications", "http://www.rhtp.org/news/publications/default.asp", "publications"),
		//new Array("News Archive", "http://www.rhtp.org/news/archive/default.asp", "archive"),
			//new Array("test link", "http://www.rhtp.org/#"),
			//new Array("test link2", "http://www.rhtp.org/#"),
		new Array("Additional Resources", "http://www.rhtp.org/news/resources/default.asp", "resources") //last item does not have a comma at the end
	),

	new Array(
		new Array("about"), //About Us section
		new Array("Overview", "http://www.rhtp.org/about/default.asp", "default"),
		new Array("Mission Statement", "http://www.rhtp.org/about/mission/default.asp", "mission"),
		new Array("Staff", "http://www.rhtp.org/about/staff/default.asp", "staff"),
		new Array("Board of Directors", "http://www.rhtp.org/about/board/default.asp", "board"),
		new Array("Employment \& Internships", "http://www.rhtp.org/about/employment/default.asp", "employment"),
		new Array("Contact Us", "http://www.rhtp.org/about/contact/default.asp", "contact") //last item does not have a comma at the end
	) //last item does not have a comma at the end
);