
	//What year? (surrounded by quotes).
year="1971"

	//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="1971/all/"

	//1=singlewide(all), 2=doublewide(allw)
imagewidth=1;

					//Begin image array . .
//I need-- "filename","width","height","caption", --use-- "", --if no caption--
pages=new Array(	


"cover.jpg","","","1971 Cover",
"1.jpg","","","",
"2.jpg","","","",
"last.jpg","","",""
);

	//what is the last numbered page number? (plus 1 if directory is "/allw/")
lastnum=2

	//How many sections are there?
howmanysections=1

	// List the sections by page number then name.(Quotes around text but not numbers.)

sect1pg=2;
sect1name="Dedication";

sect2pg="2";
sect2name="cover";

sect3pg=10;
sect3name="Seniors";

sect4pg=44;
sect4name="Juniors";

sect5pg=52;
sect5name="Sophomores";

sect6pg=60;
sect6name="Organizations";

sect7pg=78;
sect7name="Atheletics";

sect8pg=80;
sect8name="Cheerleaders";

sect9pg=96;
sect9name="Activities";

sect10pg=106;
sect10name="Superlatives";

sect11pg=144;
sect11name="Advertising";

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)



