var PortfolioTags = {
	tags: {},
	
	init: function(data) {
		PT.tags = data;
	},
	
	getById: function(tid) {
		result = '';
		jQuery.each(PT.tags, function() {
			if (tid == this.id) result = this.tag;
		});
		return result;
	}
};

var PT = PortfolioTags;
Portfolio.Tags = PT;