jQuery.widget("ui.tab", {
	options : {
		tr:{'1':'tipi-di-latte','2':'stagionatura','3':'provenienza','4':'parola-chiave'}
	},
	_create : function() {
		var _self_t = this;
		
	},
	show:function(index){
	
		this.element.find('.item').hide()
		this.element.find('#'+this.options.tr[index]).show()
	}	
});

