$(document).ready(function(){
	$('a[g]').each(function(){
		$(this).attr('href','/out.php?link='+$(this).attr('g')+'&p=60&url='+$(this).attr('href'));
	});
	$('a[t]').each(function(){
		$(this).attr('href','/out.php?member='+$(this).attr('t'));
	});
	$('a[class=link]').each(function(){
		$(this).attr('href','/out.php?link='+$(this).attr('href')+'&p=100&url='+$(this).attr('href'));
		if (!$(this).attr('target')) $(this).attr('target','_top');
	});
	$('a[class=trade]').each(function(){
		$(this).attr('href','/out.php?link='+$(this).attr('href'));
	});
});