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