$(function(){
	$('#controls').show();
	$('#slider').cycle({ 
		//fx:    'scrollHorz', 
		fx: 'uncover',
		speed:  1000,
		timeout: 4000,
		random: 0,
		pager: '#paging',
		fastOnEvent:   0,
		before:   onBefore
	});
});

function onBefore() { 
    $('#caption').html("<h2>" + this.title + "</h2>");  
}
