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 - Sonoma", 2 ],
	[ "Pg 3 - Mobile Recliners", 2 ],
	[ "Pg 4 - Primacare", 4 ],
	[ "Pg 4 - At-Eez II", 4 ],
	[ "Pg 5 - Sleep Chairs", 4 ],
	[ "Pg 6 - Interlock", 6 ],
	[ "Pg 7 - Dialogue Lounge Collection", 6 ],
	[ "Pg 7 - Odeon Modular Lounge Collection", 6 ],
	[ "Pg 8 - Odeon Public Seating", 8 ],
	[ "Pg 8 - Dixon Public Seating", 8 ],
	[ "Pg 9 - York", 8 ],
	[ "Pg 10 - Real Office", 10 ],
	[ "Pg 11 - Siena Series", 10 ],
	[ "Pg 12 - Mobile Aisle", 12 ],
	[ "Pg 13 - Antimicrobial Steel Lockers", 12 ],
	[ "Pg 13 - Signs", 12 ],
	[ "Pg 13 - Motion Room Dividers", 12 ],
	[ "Pg 14 - Shift PACS Reading Room Desk", 14 ],
	[ "Pg 14 - Fold-Down Wall Desk", 14 ],
	[ "Pg 15 - Valuta Receptacles", 14 ],
	[ "Pg 15 - Magnetic Hooks", 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_hw_gvl/mbi_hw_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();
