function addEndBullet() {
	// get the last paragraph tag of the story
	p_tags = $$("div.article p.last");
	if(p_tags.length > 0) {
		el = p_tags.last();
	
		// create an image node
		img = document.createElement("img");
		img.setAttribute("src", "/stylesheets/img/bulletEnd.png");
		img.setAttribute("class", "endArticle");
		img.setAttribute("alt", "This is the end of the article.");
	
		// add it to the last paragraph
		el.appendChild(img);
	}
}

Event.observe(window, "load", function() {
	addEndBullet();
	individualArchivesOnLoad(commenter_name);
});