/* Superfish */
jQuery(document).ready(function(){ 
       jQuery("div.navbar ul").superfish({ 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows
        }); 
    }); 
/* UI Tabs */
	jQuery(function() {
 		jQuery('#tabs').tabs({ fx: { opacity: 'toggle' } });
	});
jQuery(document).ready(function($) {	
	jQuery('#featured').hover( 
		function() {
			$('#featured-slideshow').cycle('pause');
		}, 
		function() {
			$('#featured-slideshow').cycle('resume');
		}
	);
	jQuery('#featured-slideshow').cycle({
		fx: 'fade',
		speed: 250,
		next: '#controls .next',
		prev: '#controls .prev',
		timeout: 6000
	});
});