(function() {
	$(document).ready(function() {
		$('.main_image.animated').cycle({
			fx: 'fade',
			timeout: 10000
		});
		$('img[rel*=fancyb]').parent().attr('rel', 'group').fancybox({
			centerOnScroll: true
		});
		$('.fancybox').fancybox({
			centerOnScroll: true
		});
		
		var $mybook = $('#the_book');
		$mybook.show().booklet({
			width : 744,
			height : 863,
			manual:   false,
			overlays: true,
			hovers:   true,
			pageNumbers : false
		});
		$('#contents').click(function(e){
			e.preventDefault();
			$mybook.booklet(0);
		});
	});
})();

