$(function() { 
	$('a.t').click(function(){
		$.ajax({
			async: false,
			cache: false,
			data: { r: $(this).attr("rel") },
			type: 'POST',
			url: 'http://www.r2rassoc.com/t.php' 
			});
		});
});

