jQuery(document).ready(function() {
	jQuery(".postmetadata p img").each(function() {
		var rel = jQuery(this).closest(".post").attr('id');
		var src = jQuery(this).attr('src').replace(/-\d{2,3}x\d{2,3}/i,'');
		var a = jQuery('<a/>').attr('href', src).attr('class', "thickbox").attr('rel', rel);
		jQuery(this).wrap(a);
	});

});