$(function() {
	$("#cycle").cycle('fade'); // Rotates through "Explore, Discover, Be Inspired and Refect" on the home page
	$("#rotator").cycle({ //Rotates the large header images on the homepage
		fx:'fade',
		timeout:6575,
		speed:2500
	});
});

// Creats dropdown menu
$(function() {
	function hoverOver() {
		if($(this).children("ul").size() > 0) {
			$(this).children(".children").show();
			$(this).addClass('hovered');
		}
	}
	function hoverOff() {
		if($(this).children("ul").size() > 0) {
			$(this).children(".children").hide();
			$(this).removeClass('hovered');
		}
	}
	var config = {
		sensitivity: 100,
		interval: 350,
		over: hoverOver,
		timeout: 350,
		out: hoverOff
	};
	$("#mainnav li").hoverIntent( config );			
});

// Makes dynamic tree structure for menu work
$(function() {
	$(".menu ul ul").hide();
	var current_item = $(".menu li.current_page_item");
	$(current_item).parents("ul").show();
	$(current_item).children("ul").show();
});
