// JavaScript Document

 $(function() {
            $('#mybook').booklet({
              width:960,
              height:500,
              menu:'#contents',
			  manual:false,
              overlays:true,
              arrows:true,
              hash:true,
              pageSelector: true
             }
			 
            );
            
		$('#arrowahead').click(function(e){
	        	e.preventDefault();
	        	$('#mybook').booklet("next");
	    	});
		$('#arrowback').click(function(e){
	      	  	e.preventDefault();
	        	$('#mybook').booklet("prev");
	    	});
			$('#nextpage').click(function(e){
	        	e.preventDefault();
	        	$('#mybook').booklet("next");
	    	});
			
			
			/*scrollplane*/
			$('.scroll-pane').jScrollPane();
			
            /* load colorbox */
            $("a[rel='example']").colorbox(); 
            
          
                 
  });
  
  
      
