//  avoid widows
$(document).ready(function() {
  var h2Text = '';
  $('h2 a').each(function(index) {
    h2Text  = $(this).text().replace(/ (\w+)$/,'&nbsp;$1');
    $(this).html(h2Text);
  });  
});
