// JavaScript Document

$(document).ready(function(){
	
	$('a.opacity').hover(function(){
		$(this).addClass("hovered");
		$('a.opacity:not(.hovered)').children('img').stop().animate({'opacity': 0.5});
	}, function(){
		$(this).removeClass("hovered");
		$('a.opacity:not(.hovered)').children('img').stop().animate({'opacity': 1});
	});
	
	var openState = true;
	
	$('#live-btn').click(function(e)
	{
		
			e.stopPropagation();
			
			
			if(openState == false)
			{
				$('#live-bookings').animate
				({
					width: '470px'
				 }, 1000, function() { // complete 
						
						openState = true;
						$('#booking-flash').show();	
						$('#booking-flash').css('z-index', '2000');	
				});
			
			}
			
			
			else
			{
					
				$('#booking-flash').hide();
				$('#live-bookings').animate
				({
					width: '23px'
				 }, 1000, function() { // complete 
						
						openState = false;
				});
				
			}
		
	});
	
});
