jQuery(function() {
	jQuery('blockquote').each(
		function() {
			var cite = jQuery(this).attr("cite");
			if ( /^https?:\/\//.test(cite) ) {
				var text = jQuery(this).attr("title") || cite;
				var citation = jQuery('<p class="alignright"><a href="' + cite + '">&mdash; ' + text + '</a></p>');
				citation.appendTo(jQuery(this));
			}
		}
	);
});
