
$(document).ready(function(){
	$('#twitter_feed dd').replaceText(/\bcomradeagency: \b/gi,'');
	$('#twitter_feed dd').anchorTextUrls();

	$("h2 a").each(function() {
		var wordArray = $(this).text().split(" ");
		wordArray[wordArray.length-2] += "&nbsp;" + wordArray[wordArray.length-1];
		wordArray.pop();
		$(this).html(wordArray.join(" "));
	});
});

