$(function() {
    $('#slideshow').cycle({
        fx:       'fade',
        timeout:   7000,
		random: 1,
        after:     function() {
            $('#caption').html(this.alt);
        }
    });
});

