
// THE FOLLOWING VARIABLES IDENTIFY THE AVAILABILITY OF VARIOUS SOURCE ITEMS
// (this is needed because JavaScript cannot detect files by itself)

// The value for each variable must be "True" or "true" if it exists
// Any other value prohibits the source item from being used!

var Sermon_Exists = "true";		// file: sermon.pdf
var Bulletin_Exists = "true";		// file: bulletin.pdf
var ServantSchedule_Exists = "true";	// file: servants.pdf
var MarseilleHTM_Exists = "true";	// file: marseille.htm
var MarseillePDF_Exists = "false";	// file: marseille.pdf

// THE FOLLOWING VARIABLES IDENTIFY THE AVAILABILITY OF MULTIPLE FILES
// Each row must include FILETYPE, CATEGORY, TITLE, DATE, FILENAME, & AVAILABILITY
// The FILETYPE may be PPT, MP3, PDF, or HTM
// FILETYPEs must be grouped together in the desired order
// Notice that the CATEGORY has a space after it
// The last line MUST contain "End" as the FILETYPE

var FileList = [

	["PPT", "readings ",	'"Difficulties of Prayer"',	"",		"reading_051218.ppt",	"true"],
	["PPT", "readings ",	'"Naturalness of Prayer"',	"",		"reading_060312.ppt",	"true"],
	["MP3", "",		'Recent Sermon Audio',		"",		"sermon_audio.mp3",	"true"],
	["MP3", "",		'Hymn Sing (5MB)',		"10/28/05",	"HymnSing051028.mp3",	"true"],

	["End", "",         	"",				"",		"",			""],
];

