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 - Correlation", 2 ],
	[ "Pg 3 - Freeport", 2 ],
	[ "Pg 4 - Wave Plus Executive L with Overhead Storage", 4 ],
	[ "Pg 5 - Eclipse Series", 4 ],
	[ "Pg 6 - Wave Plus Reception Station", 6 ],
	[ "Pg 7 - OBUSForme Series", 6 ],
	[ "Pg 7 - obusULTRAForme Series", 6 ],
	[ "Pg 8 - Global Accord Series", 8 ],
	[ "Pg 9 - Kate Series", 8 ],
	[ "Pg 10 - Supra and Supra X Series", 10 ],
	[ "Pg 11 - Sassy Series", 10 ],
	[ "Pg 12 - Sonic Series", 12 ],
	[ "Pg 12 - Flex Nest", 12 ],
	[ "Pg 13 - Alba Meeting Tables", 12 ],
	[ "Pg 14 - Belmont Series", 14 ],
	[ "Pg 15 - Mega Rak Portable Folding Rack", 14 ],
	[ "Pg 15 - Tertio Wall-Mounted Coat Rack", 14 ],
	[ "Pg 15 - Linea PR Coat Rack", 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_m1_gvs/mbi_m1_gvs.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();
