<!-- jQuery Cycle Plugin -->

$(document).ready(function(){ /* script operates once the page is loaded */

	$('#featured-image').cycle({ 
    	fx:     'scrollRight', /* transition effect (for a full list of transitions, visit http://malsup.com/jquery/cycle/browser.html) */
    	speed:  1000, /* speed of transition (in milliseconds) */
    	timeout: 8000, /* time between automatic transitions (0 = no auto transitions) */
		easing: 'easeinout', /* transition easing effect */
    	pager:  '#featured-navigation', /* navigation that controls the slider (do not edit) */
    	pagerAnchorBuilder: function(idx, slide) { return '#featured-navigation a:eq(' + idx + ')'; } /* DO NOT DELETE */
	});

	$('#featured-slides').cycle({ 
    	fx:     'scrollVert', /* transition effect (for a full list of transitions, visit http://malsup.com/jquery/cycle/browser.html) */
    	speed:  1000, /* speed of transition (in milliseconds) */
    	timeout: 8000, /* time between automatic transitions (0 = no auto transitions) */
		easing: 'bounceout', /* transition easing effect */
    	pager:  '#featured-navigation', /* navigation that controls the slider (do not edit) */
    	pagerAnchorBuilder: function(idx, slide) { return '#featured-navigation a:eq(' + idx + ')'; } /* DO NOT DELETE */
	});
});

<!-- End jQuery Cycle Plugin -->