function advertkaTabs(tabs_array){
	this._tabs = tabs_array;
	
	this.show = function(cTab){
		for(var i = 0; i < this._tabs.length; i++){
			$(this._tabs[i] + '_content').hide();
			$(this._tabs[i] + '_tab').className = 'menu_link_inact';
		}
		
		$(cTab + '_content').show();
		$(cTab + '_tab').className = 'menu_link';
	}
}