var T = {
	k:0, 
	A: function(i) {
		if (i != this.k) {
			$('tabt_' + this.k).className = 'tab_tmc';
			$('tabc_' + this.k).style.display = 'none';
			$('tabt_' + i).className = 'tab_tmc taba';
			$('tabc_' + i).style.display = 'block';
			this.k = i;
		}
	}
}