$(document).ready(function(){


	$("ul.topnav li.hoteltrigger").hover(function() { //When trigger is clicked...


		$(".subnav.area").fadeOut('slow');
		$(".subnav.hotel").fadeIn('slow');

		$(".subnav.hotel").hover(function() {
		}, function(){
			$(this).fadeOut('slow');
		});
	});

	$("ul.topnav li.areatrigger").hover(function() { //When trigger is clicked...


		$(".subnav.hotel").fadeOut('slow');
		$(".subnav.area").fadeIn('slow');

		$(".subnav.area").hover(function() {
		}, function(){
			$(this).fadeOut('slow');
		});
	});	
	
	$(".fishtail").fadeTo(0.5);
});

