<!--
$('#photo')
.cycle({ 
    fx:     'scrollLeft', 
    timeout: 3000,
    speed: 500,
    after:   onAfter
 });
 
function onAfter() { 
    $('.'+this.id).fadeIn(500);
}
-->