
//this is where you specify the pages that need to go in the book
flippingBook.pages = [
"pages/Page1.jpg",
"pages/Page2.jpg",
"pages/Page3.jpg",
"pages/Page4.jpg",
"pages/Page5.jpg",
"pages/Page6.jpg",
"pages/Page7.jpg",
"pages/Page8.jpg",
"pages/Page9.jpg",
"pages/Page10.jpg",
"pages/Page11.jpg",
"pages/Page12.jpg",
"pages/Page13.jpg",
"pages/Page14.jpg",
"pages/Page15.jpg",
"pages/Page16.jpg",
"pages/Page17.jpg",
"pages/Page18.jpg",
"pages/Page19.jpg",
"pages/Page20.jpg",
"pages/Page21.jpg",
"pages/Page22.jpg",
"pages/Page23.jpg",
"pages/Page24.jpg",
"pages/Page25.jpg",
"pages/Page26.jpg",
"pages/Page27.jpg",
"pages/Page28.jpg",
"pages/Page29.jpg",
"pages/Page30.jpg",
"pages/Page31.jpg",
"pages/Page32.jpg",
"pages/Page33.jpg",
"pages/Page34.jpg",
"pages/Page35.jpg",
"pages/Page36.jpg",
"pages/Page37.jpg",
"pages/Page38.jpg",
"pages/Page39.jpg",
"pages/Page40.jpg",
"pages/Page41.jpg",
"pages/Page42.jpg",
"pages/Page43.jpg",
"pages/Page44.jpg",
"pages/Page45.jpg",
"pages/Page46.jpg",
"pages/Page47.jpg",
"pages/Page48.jpg",
"pages/Page49.jpg",
"pages/Page50.jpg",
"pages/Page51.jpg",
"pages/Page52.jpg"
];




//this is where you configure the table of contents
//in this example Modern starts at page 4 and ends at page 34 and so on
flippingBook.contents = [
						 
						 ["Center Parcs in Europe", 50],
						 ["Conferences & Meetings", 48],
						 ["The Villages", 32],
						 ["Shopping", 31],
						 ["Plan Ahead", 30],
						 ["Accommodation", 21],
						 ["Groups", 20],
						 ["Eating Out", 18],
						 ["Aqua Sana", 14],
						 ["Adult Activities", 12],
						 ["Children's Activities", 8],
						 ["Discover", 4],
						 ["Contents", 3],
						 ["- - Please Select - -", 0]
						
];


flippingBook.settings.bookWidth = 450 * 2;
flippingBook.settings.bookHeight = 450;
flippingBook.settings.pageBackgroundColor = 0x94A545;
flippingBook.settings.backgroundColor = 0xffffff;
flippingBook.settings.ZoomUIColor = 0x919d6c;
flippingBook.settings.smoothPages = false;
flippingBook.settings.useCustomCursors = false;
flippingBook.settings.dropShadowEnabled = true;
flippingBook.settings.zoomImageWidth = 1240;
flippingBook.settings.zoomImageHeight = 1240;
flippingBook.settings.downloadURL = "download/CP_Brochure2010.pdf";






//ALL OF THE BELLOW SETTINGS ARE TWEEKING THINGS AND ARE COMMENTED BUT CAN BE USED BY UNCOMMENTING AND CHANGING THE VALUES//





//width of the bacground area (default 100%)
//flippingBook.settings.stageWidth = "140%";

//sets the height of the bacground area (default again is 100% in flipbook.js)
//flippingBook.settings.stageHeight = "140%";


//uncoment this to make the images clip to the page size rather than be scaled automatically
//flippingBook.settings.scaleContent = false;

//uncoment this line to make the images default possition to be the top left of the relevent page 
//default (set in pageflick.js is set to tcenter the images / to true)
//flippingBook.settings.centerContent = false;



//uncoment to add the default hard cover
//flippingBook.settings.hardcover = true;


//uncoment to set the hardcover thickness (default is set to 3)
//flippingBook.settings.hardcoverThickness = 4;



//defines the color of the hardcover edge (default is 0xffffff)
//flippingBook.settings.hardcoverEdgeColor = 0xDDDDDD;



//turns on / off 3d lighting of rigid page flipping (default is true)
//flippingBook.settings.highlightHardcover = false;



//defines the width of the book frame in pixels (default is 0)
//flippingBook.settings.frameWidth = 20;



//defines the colour of the width of the book frame (default is 0xffffff)
//flippingBook.settings.frameColor = 0xDDDDDD;



//defines the transparancy of the book frame (default is 100)
//flippingBook.settings.frameAlpha = 50;



//defines the first page number (default is 1)
//flippingBook.settings.firstPageNumber = 2;



//Defines the size in pixes of the click sensitive area that allows flipping of the pages (default is 50)
//flippingBook.settings.autoFlipSize = 100;


//defines the curvature of the fliping when using navigation buttons (default is 30)
//flippingBook.settings.navigationFlipOffset = 0;


//defines a different method of user flipping (how they turn the pages)
//flippingBook.settings.flipOnClick = false;

//defines the style of the mouse pointer over the corners to be a hand or not (default is true)
//flippingBook.settings.handOverCorner = false;


//turns the mouse icon to hand over the page and a finger over tge corner of the page (default is true)
flippingBook.settings.handOverPage = false;


//binds the first and last page so the user cant turn them like all the over pages 
//flippingBook.settings.alwaysOpened = true;

//sets the shadow depth (static, default is 1)
flippingBook.settings.staticShadowDepth = 2;


//sets weather or not you can see the drop shadow when fliping the pages (dafault is true)
//flippingBook.settings.dropShadowHideWhenFlipping = false;

//can set the background image 
//flippingBook.settings.backgroundImage = "img/bg.jpg";



//the method starts the book 
flippingBook.create();



