﻿$( function() {
    var oDiv = $( '#article_cycle_images' );
    if ( oDiv ) {
        oDiv.cycle( {  
		    speed:  'slow', 
		    timeout: 9000,
		    next:   '#next', 
		    prev:   '#prev',
		    after:  onAfter 
	    } );
    }
} );

function onAfter() {        
    $( '#current_slide' ).html( this.alt );
    $( '#caption' ).html( this.title );
    $( '#credit' ).html( 'Photo by: ' + this.getAttribute( 'rel' ) );
}
