$(document).ready(function(){
						   
	// Activate jCarousel
	function mycarousel_initCallback(carousel){};

	$('.hide').hide();

  $('#mycarousel').jcarousel({
    auto: 6,
    wrap: 'last',
    animation: 'slow',
    initCallback: mycarousel_initCallback
  });
  
  
	$("a.thumb").prettyPhoto({
		animationSpeed: 'normal', /* fast/slow/normal */
		padding: 20, /* padding for each side of the picture */
		opacity: 0.85, /* Value betwee 0 and 1 */
		showTitle: true, /* true/false */
		allowresize: false, /* true/false */
		counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
		theme: 'dark_square', /* light_rounded / dark_rounded / light_square / dark_square */
		callback: function(){}
	});
	
	// Timetable
	$('table tr:eq(0)').addClass('th');
	$('table tr:odd').addClass('even');


	// Hens/Ladies nights layout
	$('.hens-and-ladies-nights .intro h3').each(function(){
		var $this = $(this);
		$this.add($this.next()).wrapAll('<div class="left package"></div>');
	});

	$('.hens-and-ladies-nights .intro h3:eq(4)').parent('div').addClass('clear');

});