
jQuery(document).ready(function() {
	var tags=Array();
	jQuery('.tagadelic').each(function()
	{
		var tag=jQuery(this).html();
		//console.log(tag);
		if (tags[tag]=='done') jQuery(this).remove();
		tags[tag]='done';
	});
	
	//console.log('elp');
});

