/*
	ADVENTURECONNECTIONS JAVASCRIPT
	CREATED: 20.09.06
	MODIFIED: 16.06.08
	AUTHOR: ANDY FIELD @ IDNET
*/

/* JQUERY
***********************************/

$(document).ready(function(){
	$("ul#nav").superfish({
		hoverClass	: "sfHover",
		pathClass	: "overideThisToUse",
		delay		: 800,
		animation	: {opacity:"show"},
		speed		: "normal",
		oldJquery	: false, /* set to true if using jQuery version below 1.2 */
		disableHI	: false, /* set to true to disable hoverIntent detection */
		onInit		: function(){},
		onBeforeShow	: function(){},
		onShow		: function(){},
		onHide		: function(){}
	});

	$('#show').cycle({ 
		fx:    'fade', 
		speed: '4000',
		pause:  1 
	});
	
	$('#quote').cycle({ 
		fx:    'fade', 
		speed: '4000',
		pause:  1 
	});
});