$(function() {
	$("div#menu a").each(function() {
		var $a = $(this);
		$a.text($a.text() + " >");
	});
});
