$(document).ready(function() {
	
	/* ---------- Expand/Collapse Menu ---------- */
	
	$('.submenu').hide();
	$('.third-tier').hide();
	
	$('#content').bind('mouseover',function() {
		/* Uncomment following 4 lines to hide submenu on mouseout */
		//$('.submenu:not(.expanded)').slideUp("normal");
		//$('#menu .expanded').children().show();
		//$('#menu .expanded').slideDown("normal");
		//$('#menu a').removeClass('active');
		$('.third-tier').fadeOut("normal");
		$('.submenu a').removeClass('active');
	});
	
	$('#menu').hoverAccordion();
	
	$('.submenu').hoverAccordion({
		speed: 'fast', // Speed at which the subitems open up - valid options are: slow, normal, fast
        activateitem: 'false', // 'true': Automatically activate items with links corresponding to the current page, '2': Activate item #2
		active: 'active', // Class name of the initially active element
		header: 'header', // Class name for header items
		hover: 'hover', // Class name for hover effect
		opened: 'active', // Class name for open header items
		closed: '', // Class name for closed header items
		dofade: 'true',
		keepheight: 'true'
	});
		
	$('#menu .expanded').show();
	 	
 	/* ---------- Slide Transistions ---------- */
	
	$('#banner_caption p').hide(); // Smooths initial transition when page loads.
	$('.rotate').cycle({ 
 	   fx:    'fade', 
 	   //speed:  2500,
 	   speed:  3800, // <- CHANGE RIGHT-SIDE IMAGE ROTATION SPEED HERE (milliseconds)
 	   pause:  0,
 	   random: 0
	 });
	 $('#banner').cycle({ 
 	   fx:    'fade', 
 	   //speed:  4000,
 	   speed:  3000, // <- CHANGE BANNER IMAGE ROTATION SPEED HERE (milliseconds)
 	   pause:  0,
 	   random: 0,
 	   before: bannerTextB,
 	   after: bannerTextA
	 });
});

function bannerTextB() { 
    $('#banner_caption p').fadeOut(3200); // <- CHANGE BANNER TEXT FADE-OUT SPEED HERE (milliseconds)
};

function bannerTextA() {
	$('#banner_caption p').fadeIn(200); // <- CHANGE BANNER TEXT FADE-IN SPEED HERE (milliseconds)
    $('#banner_caption p').html(this.title);
};
