
//What year? (surrounded by quotes).

year="1918"

//Book name. (Echo,Techs Book, etc.) also in quotes.

bookname="Echo"

//Directory path? (from the root level-- "19xx/allw/" -- etc.)(in quotes)
//Include a trailing slash(/)

newdir="1918/allw/"

imagewidth=2;	//1=singlewide(all), 2=doublewide(allw)




					//Begin image array . .
pages=new Array(	
//Start here. I need-- "filename","width","height","caption", --use-- "", --if no caption--


"cover.jpg","","","1918 Cover / Page 1",
"2.jpg","","","2 / 3 Dedication",
"8.jpg","","","8 / 9",
"10.jpg","","","10 / 11",
"12.jpg","","","12 Sports 13",
"14.jpg","","","14",
"16.jpg","","","16 Snapshots ",
"17.jpg","","","",
"20.jpg","","","",
"21.jpg","","","",
"24.jpg","","","24 Sr. Class Officers  25",
"27.jpg","","","26  Seniors 27",
"29.jpg","","","",
"31.jpg","","","",
"33.jpg","","","",
"35.jpg","","","",
"37.jpg","","","",
"39.jpg","","","",
"41.jpg","","","",
"46.jpg","","","46 Motto 47",
"69.jpg","","","69 Editorials 70",
"73.jpg","","","73 / 74",
"74.jpg","","","74 / 75",
"76.jpg","","","76 Locals 77",
"78.jpg","","","78 / 79",
"80.jpg","","","80 / Post Card",
"end.jpg","","",""
);	

				//what is the last numbered page number (plus 1 if directory is "/allw/")
lastnum=81;

				//Next how many sections are there
howmanysections=9

// List the sections by page number then name.(Quotes around text but not numbers.)

sect1pg=2;
sect1name="Dedication";

sect2pg=12;
sect2name="Sports";

sect3pg=16;
sect3name="Snapshots";

sect4pg=24;
sect4name="Sr Officers";

sect5pg=27;
sect5name="Seniors";

sect6pg=46;
sect6name="Motto";

sect7pg=69;
sect7name="Editorials";

sect8pg=76;
sect8name="Locals";

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)


