// When the DOM is ready 
$(function() {

	// ? lastChild
	
	$("nav li:not(:last)").append("&nbsp;&nbsp;&#9679;&nbsp;&nbsp;");
	
	
})
