jQuery(document).ready(
	function(){
		jQuery('.post .content a[class!="more-link"]').click(function(){
			window.open(this.href);
			return false;
		});
	}
)