//////////////Slideshow
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade'
	});
});

//////////////Slideshow Promotions Banners
$(document).ready(function() {
    $('.slideshow_2').cycle({
		fx: 'fade',
		speed:  2500,
		timeout:  2000
	});
});


//////////////Lightbox Gallery
$(function() {
        $('#photos a').lightBox();
    });


//////////////Validate Form
$(document).ready(function(){
	$("#commentForm").validate();
});

//////////////Tabs
$(function () {
			var tabContainers = $('div.tabs > div');
			tabContainers.hide().filter(':first').show();
			
			$('div.tabs ul.tabNavigation a').click(function () {
				tabContainers.hide();
				tabContainers.filter(this.hash).show();
				$('div.tabs ul.tabNavigation a').removeClass('selected');
				$(this).addClass('selected');
				return false;
			}).filter(':first').click();
		});


//////////////Random Quotes
var r_text = new Array ();
r_text[0] = "With a great atmosphere, tasty food, and their amazing drinks deals, Harry's is the perfect place to hold your party! ";
r_text[1] = "Harry's Bar is a comfortable lounge bar offering a relaxed atmosphere and serving a wide selection of food and drink.";
r_text[2] = "Harry's Bar is located only 150 metres from the main Gondola station, making it the perfect place for Apres ski parties.";
r_text[3] = "There are plenty of fun events taking place at Harry's all week, including quiz nights and cocktail parties!";

var i = Math.floor(4*Math.random())