jQuery.noConflict();
jQuery(document).ready(function($) {	
/* Superfish */
       jQuery("div.nav ul").superfish({ 
            animation:   {width:"show", opacity:'show',height:'show'},  // fade-in and slide-down animation 
            delay : 500,
			speed: 'fast',
			autoArrows:  true,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows
        }); 
	   /* Cycle */
	jQuery('#featured').hover( 
		function() {
			$('#featured-slideshow').cycle('pause');
		}, 
		function() {
			$('#featured-slideshow').cycle('resume');
		}
	);
	jQuery('#featured-slideshow').cycle({
		fx: 'fade',
		speed: 1000,
		next: '#controls .next',
		prev: '#controls .prev',
		timeout: 4000
	});

});
