jQuery( document ).ready( function () {

  jQuery( 'div.staff div.info' ).css( 'opacity', 0.15 );
  jQuery( 'div.staff div.image img:first-child' ).css( 'opacity', 0.5 );

  jQuery( 'div.staff' ).hover(

    function () {
      jQuery( this ).find( 'div.info' ).css( 'opacity', 1.0 );
      jQuery( this ).find( 'div.image img:first-child' ).css( 'opacity', 1.0 );
      jQuery( this ).find( 'div.image img:first-child + img' ).css( 'opacity', 0 );
    },
    
    function () {
      jQuery( this ).find( 'div.info' ).css( 'opacity', 0.15 );
      jQuery( this ).find( 'div.image img:first-child' ).css( 'opacity', 0.3 );
      jQuery( this ).find( 'div.image img:first-child + img' ).css( 'opacity', 1.0 );
    }
  );
} );
