// Showcase cycler for homepage
$(function() {
    $('.showcase-pics').cycle({
        fx: 'fade',
        containerResize: true,   
        fit: true,        
        speed: 'slow',
        timeout: 5500,
		pause: 1,        
        pager: '.showcase-controls',
        pagerAnchorBuilder: function(i, el) { 
            return '<a href="#">&bull;</a>'; 
        },
        pagerEvent: 'click.cycle'        
    });
});

// Fancybox lightbox plugin
$(function() {
	$("a.fancybox").fancybox({
		'titlePosition' : 'inside',
		'titleFormat'	: formatTitle,		
		'transitionIn'	: 'fade',
		'transitionOut'	: 'none',
		'speedIn'		: 600, 
		'overlayShow'	: true	
	});

	function formatTitle(title, currentArray, currentIndex, currentOpts) {
    	return '' + (title && title.length ? '' + title + '' : '' ) + '<br />' + '<em>' + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</em>' + '';
	}
});

$(function() {
	$(".gallery-icon a").fancybox({
		'titlePosition' : 'inside',
		'titleFormat'	: formatTitle,		
		'transitionIn'	: 'fade',
		'transitionOut'	: 'none',
		'speedIn'		: 600, 
		'overlayShow'	: true	
	});

	function formatTitle(title, currentArray, currentIndex, currentOpts) {
    	return '' + (title && title.length ? '' + title + '' : '' ) + '<br />' + '<em>' + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</em>' + '';
	}
});

// Toggle Quick Booking
$(function() {
	$("#quick-booking-form").hide();
	$("#quick-booking").click(function(){
    	$(this).toggleClass("selected").next().slideToggle("fast");
		$("#quick-booking-form").show();    	
		return true;
	});
});
