jQuery( document ).ready( function () {

  // remove focus border
  jQuery( 'a' ).focus( function () { this.blur() } );

/*
  jQuery( 'ul#ulMenu a' ).hover(
    function () { jQuery( this ).css( 'opacity', 0.5 ); },
    function () { jQuery( this ).css( 'opacity', 1.0 ); }
  );
*/

} );
