﻿
$(function () {
    $('#slideshow').cycle({
        delay: 2000,
        speed: 1000,
        before: onBefore
    });

    function onBefore() {
        $('#title').html(this.alt);
    }
});
