﻿$( function() {
    var oDiv = $( '#article_cycle_images' );
    if ( oDiv ) {
        oDiv.cycle( {  
		    speed:  'slow', 
		    timeout: 0,
		    next:   '#next', 
		    prev:   '#prev',
		    after:  onAfter 
	    } );
	    
	    /*$( '#prev_img' ).bind( 'mousedown', function( e ) {
	        this.src = '/images/slidebutton_left_u.png'; 
	    } );
	    $( '#prev_img' ).bind( 'mouseup', function( e ) {
	        this.src = '/images/slidebutton_left_s.png';
	    } );
	    $( '#next_img' ).bind( 'mousedown', function( e ) {
	        this.src = '/images/slidebutton_right_u.png'; 
	    } );
	    $( '#next_img' ).bind( 'mouseup', function( e ) {
	        this.src = '/images/slidebutton_right_s.png';
	    } );*/
    }
} );

function onAfter() {        
    $( '#current_slide' ).html( this.alt );
    $( '#caption' ).html( this.title );
    $( '#credit' ).html( 'Photo by: ' + this.getAttribute( 'rel' ) );
}
