$(document).ready(function() {
	$("blockquote").each(function() {
		if (!this.cite && !this.title) return;
		var div = $("<div class='source'>\u2014 </div>");
		if (this.cite) {
			$("<a></a>").attr("href", this.cite)
				.text(this.title ? this.title : this.cite)
				.appendTo(div);
		} else {
			div.text(this.title);
		}
		div.appendTo(this);
		this.title = "";
	});
});
