
$(function() {// currently, only #slideshow applies in pages -- kjt 10/24/08
    $('#slideshow').cycle({
    	fx: 'fade',
    	speed: 900,
        pause: 1,
        timeout: 6000,
        next: '#slideshow'
    });
    
    $('#slideshow_egg').cycle({
        prev:   '#prevegg',
        next:   '#nextegg',
        timeout: 0,
        before: onBefore
    });
    
    function onBefore() {
        $('#title').html(this.alt);
        $('#name').html(this.title);
    }
});