$(document).ready(function(){
						   
	// http://malsup.com/jquery/cycle/					   
	$("#slider").cycle({ 
		pager: '#featnav',
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor 
			return '#featnav li:eq(' + idx + ') a';},
		fx:     'fade', 
		speed:  '1000',
		timeout:  '7000',
		height:  'auto',
		cleartype:  1,
		pause: 1,
		pauseOnPagerHover: 1,
		startingSlide: 0
		// reference: http://malsup.com/jquery/cycle/options.html
		});
	
	$('.blurb').hide();
	$('.slide').hoverIntent(
		function () {
			$('.blurb').slideDown('slow');
		},
		function () {
			$('.blurb').slideUp('slow');
		}
	  
	);
	
	
});

