$(document).ready(function() {
	$('#mycarousel').jcarousel();
	
	$('.galleryLink').fancybox({
		showCloseButton: false
	});
	
	function cycleOnBefore(){
		var index = $(this).index();
		//change selector to relevant jCarousel element
		var carousel = $('#image-gallery .thumbs').data('jcarousel');
		if(carousel){
			carousel.scroll(index, true);
		}
	}
	
	$('#image-gallery .cycle').cycle({
		fx: 'fade',
		pager: '#image-gallery .thumbs',
		pagerAnchorBuilder: function(idx, slide){
			return '#image-gallery .thumbs .thumb:eq(' + idx + ') a';
		},
		before: cycleOnBefore,
		pause: true
	});
	
	$('#book_date').attr('readonly','true').datepicker({
		dateFormat: 'd M y',
		minDate: new Date
	});
	
//	$('#image-gallery .thumbs').jcarousel({
////		wrap: 'circular'
//	});
});
