﻿$(document).ready(function(){
	// find all blog post author links and remove them
	$("a[href ^='/blog/_layouts/userdisp.aspx?ID=']").each(function() {
		var poster = $(this).text();
		$(this).after(poster);
		$(this).remove("a");
		
	});
});