$(function () {

$('#news-rotation').cycle({
	timeout:       4000, 
	pause:   1,
	fx: 'fade', 
	speed: 'slow',

	after: function(idx){
		id = $(this).attr('rel');
		
	}
});



$('#feature-set').before('<div id="pager" class="pager">').cycle({
	timeout:       5000, 
	pause:   1,
	fx: 'fade', 
	speed: 'slow',
	pager: '#pager',

	after: function(idx){
		id = $(this).attr('rel');
	}
});

});
