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.jpeg",
	"pages/page-017.jpeg",
	"pages/page-018.jpeg",
	"pages/page-019.jpeg",
	"pages/page-020.jpeg",
	"pages/page-021.jpeg",
	"pages/page-022.jpeg",
	"pages/page-023.jpeg",
	"pages/page-024.jpeg",
	"pages/page-025.jpeg",
	"pages/page-026.jpeg",
	"pages/page-027.jpeg",
	"pages/page-028.jpeg",
	"pages/page-029.jpeg",
	"pages/page-030.jpeg",
	"pages/page-031.jpeg",
	"pages/page-032.jpeg",
	"pages/page-033.jpeg",
	"pages/page-034.jpeg",
	"pages/page-035.jpeg",
	"pages/page-036.swf"
	];

flippingBook.contents = [
	[ "Cover", 1 ],
	[ "Table of Contents", 2 ],
	[ "K-Cups", 4 ],
	[ "Starbucks Coffee", 6 ],
	[ "Coffee Brewers", 8 ],
	[ "Savannah's Coffee Selections", 8 ],
	[ "Coffee - National Brands", 10 ],
	[ "Coffee - Gourmet", 12 ],
	[ "Hot Beverages", 12 ],
	[ "Bowls/Plates - Paper", 14 ],
	[ "Bowls/Plates - Plastic", 14 ],
	[ "Cups", 16 ],
	[ "Tableware/Breakroom Accessories", 16 ],
	[ "Beverage Station Supplies", 18 ],
	[ "Water - Dispensers/Bottled", 18 ],
	[ "Cold Beverages", 20 ],
	[ "Soft Drinks", 22 ],
	[ "Snacks", 24 ],
	[ "Breakroom/Janitorial Supplies", 28 ],
	[ "Fax Order Form", 34 ],
	[ "Back Cover", 36 ]
];

// define custom book settings here
flippingBook.settings.bookWidth = 926;
flippingBook.settings.bookHeight = 594;
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/guernsey_br/guernsey_br.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();
