$(document).ready(function() {
	$('#tabs li a').featureList({
		output			:	'#output li',
		start_item		:	0
	});
		
	$('#tabs li:first-child a, #tabs li:first-child').addClass('tabOne');
	$('#tabs li:nth-child(2) a, #tabs li:nth-child(2)').addClass('tabTwo');
	$('#tabs li:nth-child(3) a, #tabs li:nth-child(3)').addClass('tabThree');
	$('#tabs li:nth-child(4) a, #tabs li:nth-child(4)').addClass('tabFour');
	$('#tabs li:last-child a, #tabs li:last-child').addClass('tabFive');
});





