jQuery(document).ready(function($){
	// Slides the featured locations div open
	$("a.featured").click(function(){
		$(this).toggleClass("featured-active"); // Changes the image so the arrows on the button move on click
		$("#feat-loc").slideToggle();
	});
	
	// Slides right-side menu open
	$(".sideNav .showHide").toggle(function(){
		$("div.sideNav").animate({right:"-10px"},400);
	},
	function(){
		$("div.sideNav").animate({right:"-210px"},400);
	});
	
	// Hover states for the featured location images
	$("#feat-loc .loc").mouseover(function(){
		$(this).find(".img").addClass("hover");
	});
	
	$("#feat-loc .loc").mouseout(function(){
		$(this).find(".img").removeClass("hover");
	});
	$("#travelGuide").fancybox({
				'width'				: '75%',
				'height'			: '75%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
	});
});

