$(document).ready(function() {
	$("ul li:first-child").addClass("firstchild");
	$("ul li:last-child").addClass("lastchild");
	
	$('#featured').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 6000
	});
	
});


