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