$(document).ready(function(){
	$('#home-rotator > ul').each(function(){						// Loop through each slideshow individually
		$(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
		});
	})
});
