jQuery(document).ready(function($){
	$('#news-feeds').before('<ul id="news-feeds-nav">').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 0, 
		pager:  '#news-feeds-nav',
		pagerAnchorBuilder: paginate_newsfeed
	});
	
	function paginate_newsfeed(ind, el) {
		if (ind == 0) return '<li><a>Around the Web</a></li>';
		else if (ind == 1) return '<li><a>Forum</a></li>';
		else if (ind == 2) return '<li><a>Ticatfans</a></li>';
		else if (ind == 3) return '<li><a>The Spec</a></li>';
		else if (ind == 4) return '<li><a>Ticats News</a></li>';
		else if (ind == 5) return '<li><a>CFL News</a></li>';
	}
});
