$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'zoom', 
        sync:   0, 
		delay:  -4000
	});
});
//-------------------------------------------------------
$(document).ready(function() {
    $('#s2').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 0, 
    next:   '#next2', 
    prev:   '#prev2' 
    });
});
function onBefore() {
    $('#output').html("Scrolling image:<br>" + this.src);
    //window.console.log(  $(this).parent().children().index(this) );
}
function onAfter() {
    $('#output').html("Scroll complete for:<br>" + this.src)
        .append('<h3>' + this.alt + '</h3>');
}
