// Java script data for TL Australia Donations side menu
//
// Exports:
//	"menu_au_donations" is var array = 
//		[ { url:url-string, title:name-string, level:numeric }, ... ]
//
//	where:
//		"url" is the file portion of the URL;
//		"title" is the menu title to be displayed; and 
//		"level" is the menu level (0=main menu, 1=1st sub-menu, etc.)
//
// Changes (reverse order please):
//	26 May 2006, PAKW, move newsletters to national level
//	5 Feb 2006, PAKW, initial version
//
// Copyright (C) 2006 Paul Williams 
//	Developed for TOUGHLOVE Australia Association Inc.

var root = ".";

var menu_au_donations = [
	{url: "about_us.htm", title: "About Us", level: 0},
	{url: "professionals.htm", title: "Professionals", level: 0},
	{url: "materials.htm", title: "Materials", level: 0},
	{url: "donations.htm", title: "Donations", level: 0},

	// start of Donations sub pages pages
	{url: "donation_form.htm", title: "Donation form", level: 1},
	// end of Donations sub pages

	{url: "stories.htm", title: "Stories", level: 0},
	{url: "faqs.htm", title: "FAQs", level: 0},
	{url: "newsletters/index.htm", title: "Newsletters", level: 0},
	{url: "findgroups.htm", title: "Find groups", level: 0} // no comma
];


