$(document).observe('dom:loaded', function() {
	// Get rid of annoying link bottom border for links that contain images.
	$$('#site_body .post .post_content img').each(function(element) {
		var anchor = element.up('a');
		if (anchor) {
			anchor.addClassName('image');
		}
	});
});
