// JavaScript Document
$(function() {
    $('#cf-slideshow-sb').cycle({
    fx:    'fade',
    timeout:  5000,  // milliseconds between slide transitions (0 to disable auto advance)
	speed:  3000,  // speed of the transition (any valid fx speed value)
 	pause:  0,     //true true to enable "pause on hover", 0 to disable
	});
    
    function onBefore() {
    $('#title').html(this.alt);
    }
});
