$(document).ready(function(){

	$('div#center a').each(function(){
		var sExistingHtml = $(this).html();
		$(this).html('<span>&gt;&nbsp;</span>'+sExistingHtml);
	});

});