$(document).ready(function() {
	
	if($('ul.carousel-list li').length > 1) {
		$('ul.carousel-list li').each(function() {
		
			$('ul.switcher').append('<li><a href="#">' + ($(this).index() + 1) + '</a></li>');
			
		});
	}
	$('ul.carousel-list').cycle({ 
    	fx:     'fade', 
    	speed:  'fast', 
    	timeout: 2500, 
    	pager:  'ul.switcher',  
		pagerAnchorBuilder: function(idx, slide) { 
			return 'ul.switcher li:eq(' + idx + ') a'; 
		}  
	});
});
