$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 'slow',
		timeout: '6000',
		after: function () { 
			$('#caption').html("A CHURCH FOR <span style='color: #eeb949'>" + this.title + "</span> <span style='font-size: 16px; font-weight: normal; padding-left: 50px'>" + this.alt + "</span>"); 
		},
		//pager:  '#slider-nav',
		/*pagerAnchorBuilder: function(index, el) {
	
        //return '<div class="slider-btns"><a href="#"><img src="images/slider-btn-spacer.gif"></a></div>'; // whatever markup you want
    }*/
	});
});

