$(document).ready(function(){

	/* redefine Cycle's updateActivePagerLink function 
	$.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) { 
	    $(pager).find('li').removeClass('activeLI') 
	        .filter('li:eq('+currSlideIndex+')').addClass('activeLI'); 
	};
	 */
	
	
	$('#home-rotator > ul').each(function(){						// Loop through each slideshow individually
		//$(this).parent().attr({id: $(this).attr('id') + 'SS'});	// take ID of the index, append 'SS', and apply new ID to wrapping DIV.svSlideshow
		$(this).cycle({												// Then start Cycle 
			slideExpr: 'li',										// target only DL elements as slides (to avoid the H3)
			timeout: 6000,											// More options can be found here: http://malsup.com/jquery/cycle/options.html
			pause: 1,
			pauseOnPagerHover: 1
		});
	})

});
