

function convert_headers_to_imgs (selector) {
	$(selector).each(function () {
		var hrtext = $(this).text();
		$(this).html("<img src='http://lawbore.net/captions/index.php?text="+escape(hrtext)+"' alt='"+hrtext+"'>");
	});
}; 
