$(document).ready(function() {
  if (typeof (VCMSWYSIWYG) == "undefined") {
    $('h1').each(function() {
        var me = $(this);
        me.html(me.text().replace(/(^[\w/]+)/, '<strong>$1</strong>'));
    });
  }
});
