/*Função do BookFlip*/
$(function() {
	$('#mybook').booklet({
		closed:true,
		autoCenter:true,
		width:  1216, 
		height: 860
	});
	
	
	 /*   $('#mybook').booklet({
						closed: true,
						manual:   false,
						overlays: true,
						hovers:   true,
						width:  990, 
						height: 500, 
						autoCenter: true
						});*/
	$('#custom-next').click(function(){
	
		$('#mybook').booklet("next");
	});

	$('#custom-prev').click(function(e){
		e.preventDefault();
		$('#mybook').booklet("prev");
	});

	
});
