//  Default Javascript bits & pieces
    
      /* FOR TESTING ONLY */ //alert ("Default JS loading...");
      
    $(document).ready(function() {
      
  //  Put everything that needs to happen on page load in here:
      
  //  PREFILL TITLE ATTRIBUTES ON <A> TAGS
      $("a").each(function(){
        
        if ($(this).attr('title') == '') {
          
          $(this).attr('title', $(this).text());
          
            /* FOR TESTING ONLY */ //alert ($(this).attr('title') + " = " + $(this).text());
        }
        
      }); // END PREFILL TITLE ATTRIBUTES ON <A> TAGS
      
    }); // END document.ready

