(function() {
	/*
	 * me2VLAAH(http://heungsub.net/apps/me2vlaah)
	 * by Heungsub.
	 * Last Updated: $last.
	 */

	if(typeof $ != 'function' || typeof $$ != 'function')
		return;

	function vlaah$topic_to(str){
		if(str.match(/\[\[\".+?\":http:\/\/vlaah\.com\/.+? \]\]/))
			return str;

		var context = str.match(/\[\[(.+?)\]\]/)[1];
		return '[["' +context + '":http://vlaah.com/'
			+ window.encodeURIComponent(context) + ' ]]';
	}
	function vlaah$parse(str){
		for(var o = '', i = 0; i < str.length; ++ i){
			var m = str.slice(i).match(/^\[\[(?:.+?)\]\]/);
			if(m) {
				o += vlaah$topic_to(m[0]);
				i += m[0].length - 1;
			}
			else
				o += str.slice(i, i + 1);
		}
		return o;
	}

	$$('#me2writer_post_body', 'input.comment_body').each(function(el) {
		el.value = vlaah$parse(el.value);
	});
})();
