 $(document).ready(function(){
   
	// Hide all but the first feature's list item
	$('#feature li:gt(0)').css("display", "none");
	
	// Feature Animation
	$('#feature ul')
	.cycle({
		fx:			'fade',
		speed:		1500,
		timeout:	5000
									 });
	
 });
