/********************************************************

	This code is NS4, NS6, and IE5 compatible.
	
	To add another link to CHILD menus, put in format: 
		HREF, LINK NAME,
		Ex: "www.blah.com","Link text goes here",
	To add another flyout link to CHILD menus, put in format:
		HREF, LINK NAME, submenu number
		Ex: "www.blah.com","Link text goes here",2,
	
	Follow the naming style below. A new child menu be
	defined as: somethingArr. The left nav onMouseOver 
	function will call the exact same name: 
	('something','on'). Any grandchildren will be
	defined as: something_1Arr and something_2Arr.
	
	Make sure grandchildren menus are defined immediately
	following the appropriate child menus and in the correct
	order.
		
	In the function //CWcreateLayer("desktop_1", 200, 0), 
	for example, the first argument is the menu name, 
	the second is the left offset amount from the 
	original value, the third argument is the top offset
	amount from the original value.
	
	Look and feel changes to this navigation need to be
	made in "topnav.js"
	
********************************************************/

if (whichPage == "content") {



      


	/********************************************************
	content -- understanding
	********************************************************/
	
	var understandingArr = new Array(
		"understanding_intro.asp","Introduction to Adoption",
		"understanding_types.asp","Types Of Adoption",
		"understanding_attorneys.asp","Adoption Attorneys",
		"adoptive_profiles.asp","Adoptive Family Profiles"		
		)
	CWcreateLayer("understanding", 33, 30);

	/********************************************************
	content -- birth
	********************************************************/
	
	var birthArr = new Array(
		"birthparents_feeling.asp","How are you feeling?…",
		"birthparents_choices.asp","Choices",
		"birthparents_assistance.asp","Assistance",
		"birthparents_rights.asp","Your rights",
		"birthparents_families.asp","About Adoptive Families",
		"adoptive_profiles.asp","Adoptive Family Profiles",
		"birthparents_faq.asp","FAQ's"
		)
	CWcreateLayer("birth", 150, 30);


        /********************************************************
	content -- adoptive
	********************************************************/
	
	var adoptiveArr = new Array(
		"adoptive_phases.asp","4 Phases of Adoption",
		"adoptive_locating.asp","Locating a Birth Mother",
		"adoptive_fees.asp","Fees/ Costs/ Expenses",
		"adoptive_advertise.asp","Advertise/ Post your Profile",
		"adoptive_laws.asp","Laws to be Aware Of",
		"adoptive_checklist.asp","Checklist/ Adoption Readiness Quiz",
		"adoptive_birthparents.asp","About Birth Parent(s)",
		"adoptive_faq.asp","FAQ's"
		)
	CWcreateLayer("adoptive", 217, 30);

        /********************************************************
	content -- helpfull
	********************************************************/
	
	var helpfullArr = new Array(
		"litigation.asp","Litigation Services"
		)
	CWcreateLayer("helpfull", 300, 33);

        /********************************************************
	content -- surrogacy
	********************************************************/
	
	var surrogacyArr = new Array(
		"surrogacy_services.asp","Surrogacy Services"
		)
	CWcreateLayer("surrogacy", 350, 30);

        
        /********************************************************
	content -- us
	********************************************************/
	
	var usArr = new Array(
		"us_chally.asp","John Chally",
		"us_hodgson.asp","Sandra Hodgson",
		"us_reynolds.asp","Shelly Reynolds"
		)
	CWcreateLayer("us", 444, 30);


	

} else if (whichPage == "products") {

	/********************************************************
	Products -- Integration
	********************************************************/
	
	var integrationArr = new Array(
		"co-branding.asp","co-branding",
		"full_integration.asp","full integration"
		)
	CWcreateLayer("integration", 220, 15);


}

