//Cycle slideshow

$(function() {
 $('#slideshow1').cycle();

 $('#slideshow2').cycle({
 prev: '#prev',
 next: '#next',
 timeout: 0
 });

 $('#slideshow3').cycle({
 delay: 2000,
 speed: 900,
 before: onBefore
 });

 function onBefore() {
 $('#title').html(this.alt);
 }
});