function processTags(){
	$.getJSON('/tags.json', function(data){
		var content = '';
		
		$(data).each(function(i, item){
			content += templateTag(item);
		});
		
		$('.tags').html(content);
	});
}

function templateTag(item){
	return '<a href="/tag/'+item.t+'" class="tag_'+item.y+'">'+item.t+'</a> ';
}
