$(document).ready(
	function() {

		$("#nav").superfish({
			hoverClass: 'sfhover',			// the class applied to hovered list items
			pathClass: 'overideThisToUse',	// the class you have applied to list items that lead to the current page
			pathLevels: 1,					// the number of levels of submenus that remain open or are restored using pathClass
			delay: 250,						// the delay in milliseconds that the mouse can remain outside a submenu without it closing 
			animation: {opacity:'show'},	// an object equivalent to first parameter of jQuery's .animate() method
			speed: 'fast',					// speed of the animation. Equivalent to second parameter of jQuery's .animate() method 
			autoArrows:	false,				// if true, arrow mark-up generated automatically = cleaner source code at expense of initialisation performance
			dropShadows: false				// disable drop shadows
		});
		
	}
	
);

$(document).ready(function(){


	$('#spotlight1 ul')
	.before('<div id="home_slideshow_nav">')
	.cycle({ 
		fx: 'fade',
		speed: 750,
		timeout: 7500,
		pager: '#home_slideshow_nav'
	});

});

