jQuery(document).ready(function() {
     var newText = jQuery("#blog-title span a").text().split(" ").join("</span> <span>");
  newText = "<span>" + newText + "</span>";

  jQuery("#blog-title span a").html(newText)
    .find('span')
    .hover(function() { 
      jQuery(this).addClass("hilite"); 
    },
      function() { jQuery(this).removeClass("hilite"); 
    })
  .end()
    .find(":contains('Web')")
    .css({"font-weight":"bold"});

});
