jQuery(function() {
	jQuery('ins').each(
		function() {
			jQuery(this)
				.attr("title", "Inserted at " + jQuery(this).attr("datetime"))
				.css({ "text-decoration": "none", "border-bottom": "1px dotted #fff" });
		}
	)
});
