/*
flippingBook.contents = [
	[ "1", 1 ],
	[ "2", 2 ],
	[ "3", 3 ],
	[ "4", 4 ],
	[ "5", 5 ],
	[ "6", 6 ],
	[ "7", 7 ],
	[ "8", 8 ]
];
*/
// define custom book settings here
if(stageWidth == null){
	flippingBook.settings.stageWidth = "540px";
}else{
	flippingBook.settings.stageWidth = stageWidth;
}

if(stageHeight == null){
	flippingBook.settings.stageHeight = "270px";
}else{
	flippingBook.settings.stageHeight = stageHeight;
}

if(bookWidth == null){
	flippingBook.settings.bookWidth = "540";
}else{
	flippingBook.settings.bookWidth = bookWidth;
}

if(bookHeight == null){
	flippingBook.settings.bookHeight = "270";
}else{
	flippingBook.settings.bookHeight = bookHeight;
}

if(zoomImageWidth == null){
	flippingBook.settings.zoomImageWidth = 1000;
}else{
	flippingBook.settings.zoomImageWidth = zoomImageWidth;
}

if(zoomImageHeight == null){
  flippingBook.settings.zoomImageHeight = 1000;
}else{
	flippingBook.settings.zoomImageHeight = zoomImageHeight;
}

flippingBook.settings.pageBackgroundColor = 0xffffff;
flippingBook.settings.backgroundColor = 0xffffff;
flippingBook.settings.zoomUIColor = 0xf6e7f5;
flippingBook.settings.useCustomCursors = false;
flippingBook.settings.dropShadowEnabled = true,

//flippingBook.settings.downloadURL = "http://www.page-flip.com/new-demos/03-kitchen-gorenje-2008/kitchen_gorenje_2008.pdf";
//flippingBook.settings.flipSound = "sounds/02.mp3";
flippingBook.settings.flipCornerStyle = "first page only";
flippingBook.settings.zoomHintEnabled = true;
flippingBook.settings.centerContent = false;

// default settings can be found in the flippingbook.js file
flippingBook.create();
