$(document).ready(function(){
    $('#featured').orbit({
			animation: 'fade', //fade, horizontal-slide, vertical-slide
			animationSpeed: 800, //how fast animations are
			advanceSpeed: 4000, //if timer advance is enabled, time between transitions 
			startClockOnMouseOut: true, //if timer should restart on MouseOut
			startClockOnMouseOutAfter: 3000, //how long after mouseout timer should start again
			directionalNav: true, //manual advancing directional navs
			captions: true, //if has a title, will be placed at bottom
			captionAnimationSpeed: 800, //how quickly to animate in caption on load and between captioned and uncaptioned photos
			timer: true, //if the circular timer is wanted
			bullets: true //true or false to activate the bullet navigation
	});

});

