$(document).ready
(
	function ()
	{
		$(".cmt").remove();
		
		$(".bemt").each
		(
			function ()
			{
				text = $(this).text();
				chunks = text.split('-');
				mt = Base64.decode( chunks[3] ) + ':' + Base64.decode( chunks[2] ) + '@' + Base64.decode( chunks[1] ) + '.' + Base64.decode( chunks[0] );
				addr = Base64.decode( chunks[2] ) + '@' + Base64.decode( chunks[1] ) + '.' + Base64.decode( chunks[0] );
				$(this).replaceWith( $('<a/>').attr('href', mt).text(addr) );
			}
		);
	}
);
