$(function() {
	// add commas to categories in header
	var p = $("div#sectionintroduction div.intro div.inner p");
	p.find("br").not(":last").replaceWith(", ");
	p.find("br").replaceWith("");
	p.html(p.html().replace(" .", "."));
});