// JavaScript Document



// working array to store mainlinks objects
var linkHome = new NavigationLink(
	"Home",
	"./index.htm",
	"TransParentcy Home Page",
	"home"
	)

var linkAbout = new NavigationLink(
	"About Us",
	"./AboutUs.htm",
	"Background information about who is TransParentcy and Paula.",
	"about"
	)

var linkCustody = new NavigationLink(
	"Custody",
	"./Custody.htm",
	"Custody issues information for the Transgender Parent.",
	"custody"
	)

var linkResources = new NavigationLink(
	"Resources",
	"./Resources.htm",
	"Legal, Trans Family, Mediators, and Organizations and Groups for the Trans Parent.",
	"resources"
	)

var linkConnections = new NavigationLink(
	"Connections",
	"./Connections.htm",
	"Connecting and sharing with others who have experienced the same thing.",
	"connections"
)

var linkContactUs = new NavigationLink(
	"Contact Us",
	"./ContactUs.htm",
	"Use our on-line email form or Sign-up for our occassional eNewsletter.",
	"contact"
)

// supplemental navigation links, typically displayed below main nav bar links:
var linkDisclaimer = new NavigationLink(
	"Disclaimer",
	"./index.htm#disclaimer",
	"Important Disclaimer Notice",
	"home"
)
var linkPrivacy = new NavigationLink(
	"Privacy",
	"./index.htm#privacy",
	"Important Privacy Notice",
	"home"
)
var linkWhatsNew = new NavigationLink(
 	"What's New",
	"WhatsNew.htm",
	"Information about recent changes on our web site.",
	"whats new"
 )
var linkAnnouncements = new NavigationLink(
	"Announcements",
	"Announcements.htm",
	"Special Announcements for the community.",
	"announcements"
)
var linkNotices = new NavigationLink(
	"Notices",
	"notices.htm",
	"Information, Disclaimer, Privacy",
	"notices"
)

//
// links displayed at the top of the page to view sub-pages within a page group.
//
// About section pages
//
var linkAboutBio = new NavigationLink(
	"Biographies",
	"AboutUs-biographies.htm",
	"Individual biographies of TransParentcy folks.",
	"about"
)
var linkAboutCopyright = new NavigationLink(
	"Copyright",
	"Copyright.htm",
	"Copyright information about TransParentcy content and materials.",
	"about"
)

//
// Custody section pages
//
var linkCustodyStart = new NavigationLink(
	"Where to Start",
	"Custody-WhereToStart.htm",
	"Preparing for custody dispute.",
	"custody"
)
var linkCustodyRights = new NavigationLink(
	"Legal Rights",
	"Custody-TransLegalRights.htm",
	"What legal rights do transgender parents have?",
	"custody"
)
var linkCustodyReferences = new NavigationLink(
	"References",
	"Custody-References.htm",
	"Custody references.",
	"custody"
)
var linkCustodyStories = new NavigationLink(
	"Custody Stories",
	"Custody-Stories.htm",
	"Stories and legal cases related to transgender parents.",
	"custody"
)

//
// Resources section pages
//
var linkResourcesAdvocacy = new NavigationLink(
	"Advocacy",
	"Resources-Advocacy.htm",
	"Transgender Advocacy",
	"resources"
)
var linkResourcesAntiHate = new NavigationLink(
	"Hate/Bias",
	"Resources-AntiHate.htm",
	"Anti-hate and anti-bias resources.",
	"resources"
)
var linkResourcesCivilRights = new NavigationLink(
	"Civil Rights",
	"Resources-CivilRights.htm",
	"Resources in the civil rights legal area",
	"resources"
)
var linkResourcesCustody = new NavigationLink(
	"Custody",
	"Resources-Custody.htm",
	"Custody, mediators, articles",
	"resources"
)
var linkResourcesFamily = new NavigationLink(
	"Family",
	"Resources-Family.htm",
	"Trans, LGB and General family resources.",
	"resources"
)
var linkResourcesFamLaw = new NavigationLink(
	"Family Law",
	"Resources-FamilyLaw.htm",
	"Resources specific to divorce, custody, adoption, partner rights.",
	"resources"
)
var linkResourcesLegal = new NavigationLink(
	"Legal",
	"Resources-Legal.htm",
	"Lawyers, organizations, case law, news articles.",
	"resources"
)
var linkResourcesMedia = new NavigationLink(
	"Media/Education",
	"Resources-MediaEdu.htm",
	"Resources working to educate about LGBT Issues.",
	"resources"
)
var linkResourcesPolitical = new NavigationLink(
	"Political",
	"Resources-Political.htm",
	"Resources working directly with the political system.",
	"resources"
)
var linkResourcesSupport = new NavigationLink(
	"Support",
	"Resources-Support.htm",
	"Therapists, mediators, organizations serving a support role.",
	"resources"
)
var linkResourcesYouth = new NavigationLink(
	"Youth",
	"Resources-Youth.htm",
	"Resources specifically for TLGB? Youth.",
	"resources"
)

//
// Contact section pages
//
var linkContactNewsletter = new NavigationLink(
	"eNewsletter",
	"TransParentlySubscribeForm.htm",
	"Sign-up to receive TransParentcy's eNewsletter.",
	"contact"
)

// define and assign values to specific navigation lists based on page location
// all links used as main site navigation:
var navMain = new Array(linkHome, linkAbout, linkCustody, linkResources, linkConnections, linkContactUs, linkNotices,/*linkDisclaimer, linkPrivacy,*/ linkWhatsNew)
// links always appearing in the footer of each page
var navFooter = new Array(linkHome, linkAbout, linkCustody, linkResources, linkConnections, linkContactUs,linkNotices)
// all links that appear on pages with tabs - script will parse which tabs for which pages based on the linkgroup value.
var navTabs = new Array(linkAboutBio, linkAboutCopyright, linkCustodyRights, linkCustodyStart, linkCustodyReferences, linkCustodyStories,
								linkResourcesCustody, linkResourcesFamLaw, linkResourcesLegal, linkResourcesSupport,
								linkResourcesFamily, linkResourcesAdvocacy, linkResourcesCivilRights, linkResourcesAntiHate,
								linkResourcesMedia, linkResourcesPolitical, linkResourcesYouth,
								linkContactNewsletter)


