
//What year? (surrounded by quotes).

year="2000"

//Book name. (Echo,Techs Book, etc.) also in quotes.

bookname="Tech's Book"

//Directory path? (from the root level--"19xx/allw/"-- etc.)(In quotes.Include a trailing slash(/))

newdir="2000/all/"

imagewidth=1;	//1=singlewide(all), 2=doublewide(allw)

//If width = 2, Which side is page 1 on? ("left" or "right")

					//Begin image array . .
//Start here. I need-- "filename","width","height","caption", --use-- "" --if no caption--

pages=new Array(

"cover.jpg","","","2000 cover",
"back.jpg","","","",
"last.jpg","","","",
"cover.jpg","","",""
);

	//what is the last numbered page number? (plus 1 if directory is "/allw/")
lastnum=0;



	//How many sections are there?
howmanysections=0;
// List the sections by page number then name.(Quotes around text but not numbers.)

sect1pg=6;
sect1name="Faculty";

sect2pg=18;
sect2name="Seniors";

sect3pg=30;
sect3name="Superlatives";

sect4pg=34;
sect4name="Juniors";

sect5pg=40;
sect5name="Sophomores";

sect6pg=42;
sect6name="Atheletics";

sect7pg=50;
sect7name="Cheerleaders";

sect8pg="";
sect8name="";

sect9pg="";
sect9name="";

sect10pg="";
sect10name="";

sect11pg="";
sect11name="";

sect12pg="";
sect12name="";



//The End, Name this file according to the year,and Save it in the js folder as a .js file (19XX/19XX.js)


