$(document).ready(function(){
	
	$("#Map area").mouseover(function(){
		var area = $(this).attr('id');		
		$(".floorplan-room-image img.active").removeClass("active");
		$(".floorplan-room-image img." + area).addClass("active");
	});		
	

	$('img.top-join-image, img.top-drinks-image').css({
		"position" : "absolute", 
		"top" : "240px",
		"z-index" : "1"
	});
	
		$('#left-column-home img#left-image-1').css("top", "460px");	
			$('#left-column-home img#left-image-1').animate(
				{ top : '373px' }, 
				{ duration : 900 }
			);
				$('#left-column-home img#left-image-1').mouseover(function(){
					$(this).animate( 
						{ top: '383px' }, 
						{duration: 200, queue: false}
					)
				});
					$('#left-column-home img#left-image-1').mouseout(function(){
						$(this).animate( 
							{ top: '373px' }, 
							{duration: 200, queue: false}
						)
					});

		$('#left-column-home img#left-image-2').css("top", "480px");		
			$('#left-column-home img#left-image-2').animate(
				{ top : '186px' }, 
				{ duration : 800 }
			);
		
		$('#left-column-home img#left-image-3').css("top", "480px");
			$('#left-column-home img#left-image-3').animate(
				{ top : '130px' }, 
				{ duration : 700 }
			);
			
		
		$('#left-column-home img#left-image-4').css("top", "480px");
			$('#left-column-home img#left-image-4').animate(
				{ top : '334px' }, 
				{ duration : 700 }
			);


		$('#left-column-home img#left-image-6').css("top", "480px");
			$('#left-column-home img#left-image-6').animate(
				{ top : '134px' },
				{ duration : 1000 }
			);
		
		
	$('img.top-join-image').animate( 
		{ top: '125' }, 
		{ duration : 1000 }
	);
		$('img.top-join-image').mouseover(function(){
			$(this).animate( 
				{ top: '135' }, 
				{duration: 200, queue: false}
			)
		});
			$('img.top-join-image').mouseout(function(){
				$(this).animate( 
					{ top: '125' }, 
					{duration: 200, queue: false}
				)
			});
			
	$('img.top-drinks-image').animate(
		{ top: '0' }, 
		{ duration : 1000 }		
	);
	
});
