$(document).ready(function(){
	$('#map').mouseover(function() {
		$('.mapImageZoom').fadeIn('short');
	});
	$('.mapImageZoom').mouseout(function() {
		$('.mapImageZoom').fadeOut('short');
	});
	
	$('#showHome, #showRooms').orbit({
		animation: 'fade',
		animationSpeed: 750,
		bullets: false,
		advanceSpeed: 3500,
		directionalNav: false
	});
	
});
