//********************************************************
// This file contains
// CourseDescriptionV2.js
// Version 2 9/29/01
// 3 levels of navigation working
//********************************************************

// the global variables that define the course structure

//********************************************************
// Declare Global Variables
//********************************************************

// gSiteName defines the location of the course on the 
// web server. Most of the time, you set it = the name
// of the site
// in this case, this course is part of a large site, 
// so the site name points to the folder that holds the module
  
//var gSiteName = "CAPEntryTraining"


// gCourseDescription defines all the pages in your site.
// it has the format of
// "Chapter Name", "Section Name", "Page Name", "URL",
//
// Note #1 - If a chapter has only one section and that section has only one page
//           then use the same name for all three names. All the names have to be
//           there for this to work correctly
// Note #2 - The URL starts with "folder/folder/file.htm" as if you were at the top
//           level of the web site. There is no
//           limit to the number of folders that you can have. However, make sure
//           that you actually put the files in the right place, otherwise the 
//           navigation won't work
// Note #3 - The " marks have to be around each name and the URL.
// Note #4 - There has to be a , between each name and URL.
// Note #5 - Leave off the comma after the last URL, or the nav won't work
// Note #6 - No module will have only 1 chapter. 
// Note #7 - No chapter can have only 1 section with multiple subsections. 
//           Make the subsections, sections in this case.

var gCourseDescription = new Array (
	
	"Meet Stephanie","Exposed","Exposed","Exposed","_aboutMe/stephanieExposed.htm",
	"Meet Stephanie","More About","More About","More About","_aboutMe/quickFacts.htm",
	"Meet Stephanie","Photo Shoot 1","Photo Shoot 1","Photo Shoot 1","_photos/shoot06-05.htm",
	"Meet Stephanie","Photo Shoot 2","Photo Shoot 2","Photo Shoot 2","_photos/shoot11-04.htm",
	"Meet Stephanie","Diet-On Season","Diet-On Season","Diet-On Season","_aboutMe/dietOn.htm",
	"Meet Stephanie","Diet-Off Season","Diet-Off Season","Diet-Off Season","_aboutMe/dietOff.htm",
	"Meet Stephanie","Workout","Workout","Workout","_aboutMe/workout.htm",
	"Meet Stephanie","Contact","Contact","Contact","_aboutMe/contact.htm",
	"Meet Stephanie","Sign Guest Book","Sign Guest Book","Sign Guest Book","_extras/guestbook.htm",
	"Meet Stephanie","Fitness Links","Fitness Links","Fitness Links","_aboutMe/links.htm",
    	"Meet Stephanie","Austin Links","Austin Links","Austin Links","_aboutMe/aTXlinks.htm",
	
	"Contests","Upcoming...","Upcoming...","Upcoming...","_contests/upcoming.htm",
	"Contests","History","History","History","_contests/results.htm",
	"Contests","Photos","Photos","Photos","_contests/photos.htm",
	
	"Personal Training","SG Report","SG Report","SG Report","_training/surgeonGenReport.htm",
	"Personal Training","Mission Statemt","Mission Statemt","Mission Statemt","_training/missionStatemt.htm",
	"Personal Training","PT Benefits","PT Benefits","PT Benefits","_training/PTbenefits.htm",
	"Personal Training","Assessment","Assessment","Assessment","_training/assessment.htm",
	"Personal Training","Goals","Goals","Goals","_training/goals.htm",
	"Personal Training","Losing Fat","Losing Fat","Losing Fat","_training/tipsToLoseFat.htm",
	
	"Nutrition","Tracking","Tracking","Tracking","_nutrition/foodTracking.htm",
	"Nutrition","Protein Bars","Protein Bars","Protein Bars","_nutrition/proteinBars.htm",
	"Nutrition","Snacks","Snacks","Snacks","_nutrition/snacks.htm",
	"Nutrition","Seasoning","Seasoning","Seasoning","_nutrition/seasoning.htm",
		
	"Sponsors","Sponsors","Sponsors","Sponsors","_sponsors/sponsors.htm"

	
	)
 