$(document).ready(function() {
	$(".postEntry h2 a").html(function(i,text){
		return text.replace(/\w+\s/, function(match){
		return '<strong>' + match + '</strong>';
		});
	});
});

