// Slideshow for www.lexisnexis.com homepage

//http://webdeveloperplus.com/jquery/featured-content-slider-using-jquery-ui/
	jQuery(function(){
		jQuery('#featured').tabs({fx:{opacity: 'toggle'}}).tabs('rotate',3500, true);
		//Stop the slideshow on mouse over
		jQuery('#featured').hover(function() {
			jQuery('#featured').tabs('rotate',0,true);
				},
			function() {
			jQuery('#featured').tabs('rotate',3500,true);
		});
	});
