$(function(){
	$('.link').each(function(){
		$(this).html(
			$(this).html()
				.replace(/((h?ttps?|ftp):\/\/[-_.!~*\'\w;\/?:@&=+$,%#]+|watch\/\d+|mylist\/\d+|myvideo\/\d+|[ns]m\d+|fz\d+|(Img|Flv|Flash|File|Cl|Mg|Ca|Na|Be|F|K|B|Ar|P|S|Al|O|C|Si|N|Li|H|Ne|He|Sc)_\d+)/g, ' <a href="$1" target="_blank">$1</a> ')
				.replace(/<a href="(ttp:\/\/.*?)" target="_blank">/g, '<a href="h$1" target="_blank">')
				.replace(/<a href="(watch\/\d+|mylist\/\d+|myvideo\/\d+)" target="_blank">/g, '<a href="/$1">')
				.replace(/<a href="([ns]m\d+|fz\d+)" target="_blank">/g, '<a href="/watch/$1">')
				.replace(/<a href="(Img|Flv|Flash|File|Cl|Mg|Ca|Na|Be|F|K|B|Ar|P|S|Al|O|C|Si|N|Li|H|Ne|He|Sc)_(\d+)" target="_blank">/g, '<a href="http://www1.axfc.net/uploader/$1/so/$2" target="_blank">')
		);
	});
});