$(document).ready(function() {
	
  $('#slideshow div:first').fadeIn(1100, function() {
	$('#slideshow').cycle({ 
		fx:     'fade', 
		speed:  700, 
		timeout: 9000, 
		pager:  '#nav2', 
		pauseOnPagerHover: true, 
		randomizeEffects: false, 
		pagerAnchorBuilder: function(idx, slide) { 
		 
			return '#nav2 div:eq(' + idx + ') a'; 
		} 
	});
  });
  
  $('.updates-rotator div:first').fadeIn(1100, function() {
  $('.updates-rotator').cycle({
				fx:     'fade', 
				speed:  1250, 
				timeout: 17000, 
				pause: 1 
			});
			
	});

	
  
});


