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

flippingBook.contents = [
	[ "Cover", 1 ],
	[ "Pg 2 - Line-of-Sight", 2 ],
	[ "Pg 3 - Treo Series", 2 ],
	[ "Pg 4 - CSII", 4 ],
	[ "Pg 5 - iQ Training Room Tables", 4 ],
	[ "Pg 6 - Bungee", 6 ],
	[ "Pg 7 - Ravenna Series", 6 ],
	[ "Pg 8 - Citi Series", 8 ],
	[ "Pg 8 - Sirena Series", 8 ],
	[ "Pg 9 - Insulated Vertical Files", 8 ],
	[ "Pg 9 - Mediavault HD", 8 ],
	[ "Pg 10 - Tabletop Lectern and Media Cart", 10 ],
	[ "Pg 10 - Executive Mobile Lectern", 10 ],
	[ "Pg 10 - Executive Presentation Stand", 10 ],
	[ "Pg 11 - Euro Carts", 10 ],
	[ "Pg 11 - Portable Cinema Screen", 10 ],
	[ "Pg 11 - Portable Tripod Projection Screen", 10 ],
	[ "Pg 11 - Wall or Ceiling Projection Screen", 10 ],
	[ "Pg 11 - Electric Projection Screen", 10 ],
	[ "Pg 12 - Lockers", 12 ],
	[ "Pg 13 - Round Wastebaskets", 12 ],
	[ "Pg 13 - Dome Top Receptacles", 12 ],
	[ "Pg 13 - Round Step-On", 12 ],
	[ "Pg 13 - Rectangular & Square Wastebaskets", 12 ],
	[ "Pg 14 - Canmeleon Aggregate", 14 ],
	[ "Pg 14 - Black Speckle", 14 ],
	[ "Pg 14 - Kazaam Cans", 14 ],
	[ "Pg 15 - Motion Room Dividers", 14 ],
	[ "Pg 15 - Designer Sign Stand", 14 ],
	[ "Pg 15 - Improv A-Frame Clip Frame", 14 ],
	[ "Pg 15 - Improv Lobby Clip Frame Sign", 14 ],
	[ "Pg 15 - Improv Clip Frame Signs", 14 ],
	[ "Pg 16 - Great American Art", 16 ]
];

// define custom book settings here
flippingBook.settings.bookWidth = 1000;
flippingBook.settings.bookHeight = 647;
flippingBook.settings.pageBackgroundColor = 0x436ab3;
flippingBook.settings.backgroundColor = 0x436ab3;
flippingBook.settings.zoomUIColor = 0x919d6c;
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.opmafliplinks.com/mbi_he_gvl/mbi_he_gvl.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();
