	$(document).ready(function() {
			
			$('.nav_destinations').hoverIntent(
				function(){
					$('.destinationsRollover').addClass('showContent');							 
					$('.nav_destinations a').addClass('activeItem');
				},
				function(){
					$('.destinationsRollover').removeClass('showContent');
					$('.nav_destinations a').removeClass('activeItem');
			});
			
			$('#hero').cycle({
				fx: 'fade',
				speed:   700, 
    			timeout: 8000, 
				next:   '.heroArrowRight', 
   		 		prev:   '.heroArrowLeft',
				pause:	1
			});
			
			
		});
