$(function() {
    $('#slideshow').cycle({
        fx:     'fade',
        speed:   1000,
        timeout: 5000,
        pager:  '#fader-nav',
        before: function() {
        	var titleArray = this.alt.split('||');

            $('#caption').html(titleArray[0]);
            $('#title').html(titleArray[1]);
        }
    });
});

