$(document).ready(function() {
	$('.post h2 a').each(function(){
		var url_prefix = 'http://www.taosfriction.com/?p=';
		var href = this.href.replace(url_prefix,'');
		var the_p = $(this).parent().next().next().next().next();
		the_p.html(the_p.html().replace("...","<a href='"+url_prefix+href+"'>...</a>"));
	});
});
