$(document).ready(function(){
	$(".topref").click(function(){
		$.ajax({
			url: "/out.php?url="+$(this).attr("href"),
			cache: false,
			success: function(html){
				return true;
			}
		});
	});
});
