$(document).ready(function()
{
	Cufon.replace('h1, h2, h3, h5, label, #footer p.gold, #venue-list p, #venue-list li a');
	Cufon.replace('.nav-item a, .nav-item-last a', {
		hover: true
	});

	$('.home-btns').hover(function(){
		$(this).addClass("hovered");
		$('.home-btns:not(.hovered)').stop().animate({'opacity': 0.3});
	}, function(){
		$(this).removeClass("hovered");
		$('.home-btns:not(.hovered)').stop().animate({'opacity': 1});
	});



	$('div.venue-btn').click(function()
	{

		$('div.venue-content').hide();
		var page = $(this).find('.venue-img').find('img').attr('alt');
		$('#' + page).show();
		if(page == 'Fulham')
		{
			$('#images').html(' ');
			$('#images').html('<img src="images/transition/fulham/01.jpg" width="956" height="358" alt="BA RESTAURANT"/><img src="images/transition/fulham/02.jpg" width="956" height="358" alt="BA RESTAURANT"/>');
			$('#images').jqFancyTransitions({ width: 956, height: 358, delay: 4000, titleOpacity:0 });
			
		}
		
		else if(page == 'Croydon')
		{
			$('#images').html(' ');
			$('#images').html('<img src="images/transition/croydon/01.jpg" width="956" height="358" alt="BA RESTAURANT"/>');
			$('#images').jqFancyTransitions({ width: 956, height: 358, delay: 4000, titleOpacity:0 });
		}
		
		else if(page == 'Purley')
		{
			$('#images').html(' ');
			$('#images').html('<img src="images/transition/purley/01.jpg" width="956" height="358" alt="BA RESTAURANT"/><img src="images/transition/purley/02.jpg" width="956" height="358" alt="BA RESTAURANT"/>');
			$('#images').jqFancyTransitions({ width: 956, height: 358, delay: 4000, titleOpacity:0 });
			
		}
		
		else
		{
			$('#images').html(' ');
			$('#images').html('<img src="images/transition/maidstone/01.jpg" width="956" height="358" alt="BA RESTAURANT"/><img src="images/transition/maidstone/02.jpg" width="956" height="358" alt="BA RESTAURANT"/>');
			$('#images').jqFancyTransitions({ width: 956, height: 358, delay: 4000, titleOpacity:0 });
			
		}
		

	});
	
	$('div.venue-btn').hover(
	
	function(){
		$(this).find('.venue-img').css('border-color' , '#ffffff');
	},
	
	function(){
		$(this).find('.venue-img').css('border-color' , '#A5834C');
	}
		
	);
	

  	
	$('.venue-btn').find('img[alt='+ window.location.hash.replace('#','') +']').parent().parent().trigger('click');

	var cur_left = parseInt($("#scrolling-banner").css("left").replace("px", ""));

	function scrolling_banner() {
		cur_left -= 4;
		if (cur_left < -956) {
			cur_left = 956;
		}
		$("#scrolling-banner").animate({left : cur_left}, 50);
	}
	
	var scrolling_banner_timer = setInterval(scrolling_banner, 20);



});

