$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade',
		speed: 2000,
		timeout: 2000
	});
	
	$('#pages_wrap').cycle({ 
	    fx:     'fade', 
	    speed:  2000, 
	    timeout: 0, 
	    pager:  '.nav_menu',
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor 
			return '.nav_menu li:eq(' + idx + ') a'; 
		}
	});
	
	$('#history_pages_wrap').cycle({ 
	    fx:     'fade', 
	    speed:  1000, 
	    timeout: 0, 
		next: '.next',
		prev: '.prev',
		pager:  '.history_nav',
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor 
			return '.history_nav li:eq(' + idx + ') a'; 
		}
	});
	
	$('#quotes_wrap').cycle({ 
	    fx:     'fade', 
	    speed:  1000, 
	    timeout: 5000,
		pause: 1,
		next: '.nextq',
		prev: '.prevq',
	});
});


