flippingBook.pages = [
	"pages/page-001.swf",
	"pages/page-002.swf",
	"pages/page-003.jpeg",
	"pages/page-004.swf",
	"pages/page-005.jpeg",
	"pages/page-006.swf",
	"pages/page-007.jpeg",
	"pages/page-008.swf",
	"pages/page-009.jpeg",
	"pages/page-010.swf",
	"pages/page-011.jpeg",
	"pages/page-012.swf",
	"pages/page-013.jpeg",
	"pages/page-014.swf",
	"pages/page-015.jpeg",
	"pages/page-016.swf"
	];

flippingBook.contents = [
	[ "Cover", 1 ],
	[ "Page 2", 2 ],
	[ "- Colored Pencils", 2 ],
	[ "- Crayons", 2 ],
	[ "- Washable Markers", 2 ],
	[ "- Washable Watercolors", 2 ],
	[ "Page 3", 2 ],
	[ "- Erasers", 2 ],
	[ "- Pencil Boxes", 2 ],
	[ "- Pencils", 2 ],
	[ "Page 4", 4 ],
	[ " - Pens", 4 ],
	[ " - Permanent Markers", 4 ],
	[ "Page 5", 4 ],
	[ " - Clipboard", 4 ],
	[ " - Construction Paper", 4 ],
	[ " - Drawing Paper", 4 ],
	[ " - Handwriting Tablets", 4 ],
	[ " - Writing Paper", 4 ],
	[ "Page 6", 6 ],
	[ " - Copy Paper", 6 ],
	[ " - File Box", 6 ],
	[ " - Index Cards", 6 ],
	[ " - Quadrille Pad", 6 ],
	[ " - Stapler", 6 ],
	[ "Page 7", 6 ],
	[ "- Compass & Protractor", 6 ],
	[ "- Pencil Pouch", 6 ],
	[ "- Pencil Sharpeners", 6 ],
	[ "- Plastic Ruler", 6 ],
	[ "- Soft Handle Scissors", 6 ],
	[ "- Student Scissors", 6 ],
	[ "- Wooden Ruler", 6 ],
	[ "Page 8", 8 ],
	[ "- Ring Binders", 8 ],
	[ "- View Binders", 8 ],
	[ "- Zipper Binder", 8 ],
	[ "Page 9", 8 ],
	[ "- Filler Paper", 8 ],
	[ "- Plastic Dividers", 8 ],
	[ "- Reinforcement Labels", 8 ],
	[ "- Sheet Protectors", 8 ],
	[ "- Tab Dividers", 8 ],
	[ "Page 10", 10 ],
	[ "- Paper Portfolios", 10 ],
	[ "- Poly Portfolios", 10 ],
	[ "Page 11", 10 ],
	[ "- Composition Books", 10 ],
	[ "- Spiral Notebooks", 10 ],
	[ "- Wirebound College Ruled Notebooks", 10 ],
	[ "Page 12", 12 ],
	[ "- Book Covers", 12 ],
	[ "- Flash Cards", 12 ],
	[ "- Reference Books", 12 ],
	[ "- Self-Stick Notes", 12 ],
	[ "- Transparent Tape", 12 ],
	[ "Page 13", 12 ],
	[ "- Calculators", 12 ],
	[ "- Stereo Headphones", 12 ],
	[ "- USB Flash Drive", 12 ],
	[ "Page 14", 14 ],
	[ "- Facial Tissues", 14 ],
	[ "- Hand Sanitizer", 14 ],
	[ "- Liquid Soap", 14 ],
	[ "- Paper Towels", 14 ],
	[ "- Plastic Storage Bags", 14 ],
	[ "- Premoistened Wipes", 14 ],
	[ "Page 15", 14 ],
	[ "- Adhesive Bandages", 14 ],
	[ "- Expandable Files", 14 ],
	[ "- Motivational Stickers", 14 ],
	[ "- Play-Doh", 14 ],
	[ "- Rest Mat", 14 ],
	[ "Page 16", 16 ],
	[ "- Dry-Erase Markers", 16 ],
	[ "- Felt Whiteboard Eraser", 16 ],
	[ "- Glue", 16 ],
	[ "- Highlighters", 16 ]
];

// define custom book settings here
flippingBook.settings.bookWidth = 1000;
flippingBook.settings.bookHeight = 647;
flippingBook.settings.pageBackgroundColor = 0x3b4aab;
flippingBook.settings.backgroundColor = 0x3b4aab;
flippingBook.settings.zoomUIColor = 0x3b4aab;
flippingBook.settings.smoothPages = false;	
flippingBook.settings.useCustomCursors = false;
flippingBook.settings.dropShadowEnabled = false,
flippingBook.settings.zoomImageWidth = 960;
flippingBook.settings.zoomImageHeight = 1232;
flippingBook.settings.downloadURL ="http://www.schooltoolbox.com/stb_fliplink/schooltoolbox.pdf";
flippingBook.settings.flipSound = "sounds/02.mp3";

// handle query strings for page numbers - looks for ?pg= in the URL and set's the firstpagenumber of the flipbook
// This code MUST be before the call to flippingBook.create();
fullURL = parent.document.URL;
manualPage = parseFloat(fullURL.substring(fullURL.indexOf('?')+4, fullURL.length));
if (isNaN(manualPage) === false) {	flippingBook.settings.firstPageNumber = manualPage;	}

// default settings can be found in the flippingbook.js file
flippingBook.create();

