jQuery( document ).ready( function () {

  jQuery( 'dl.portrait dt' ).hover(
    function () { jQuery( 'dt#dtButton_' + (jQuery( this ).attr( 'id' ).split( '_' ))[1] ).show() },
    function () { jQuery( 'dl.button dt' ).hide(); }
  );

  jQuery( 'dl.button dt' ).hover(
    function () { jQuery( this ).show() },
    function () { jQuery( 'dl.button dt' ).hide(); }
  );

} );
