$j = jQuery.noConflict();
$j(document).ready(function($j) {
	$j('.link').each(function(){
		var anchor = $j(this).html();
		var href = $j(this).attr('rel');
		$j(this).replaceWith('<a href="'+href+'">'+anchor+'</a>');
	});
});

