$(document).ready(function(){
		
	   /*If there's an attraction area on the page*/
		if(('.Attraction-Area').length){	
			$('.Attraction-Area .Images').sideswap();
		}
		
		/*If there's FAQs on the page*/
		if(('#FAQs').length){
			
			$('#FAQs ol > li > a').click(function(event){
		
				event.preventDefault();	
				$(this).blur();
				
				$(this).parent().children('ul').slideToggle();
				
			});
		}

		/*If there are FancyBox Areas on the page*/
		$(".fancybox").fancybox({
			'overlayShow'	: false,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'titlePosition'	: 'inside',
			'hideOnContentClick' : true,
			'autoScale' : true
		});
		
		/*If there are FancyBox text areas on the page*/
		$(".fancybox-text").fancybox({
			'overlayShow'	: false,
			'titlePosition'	: 'inside',
			'hideOnContentClick' : true,
			'autoScale' : true
		});
		
		$(".fancybox-popup").fancybox({
			'autoScale' : false
		});
		
});	
