function tabovi_controller( p_tabs_id )
{
	var i=0;	
	
	this._tabs_id = p_tabs_id;
	this._urls = [];
	

	this._init = function()
	{
		this._no_tabs = this._tabs_id.length
	
		for (i=0; i < this._no_tabs; i++)
		{
			this._urls[i] = $('#'+ this._tabs_id[i]).html();
		}
		
		var _html = $(this._urls[0]).text();
		$('#'+ this._tabs_id[0]).html( _html );
	}
	
	this.activate_tab = function ( p_id )
	{
		if (p_id >= 0 && p_id < this._no_tabs)
		{
			for (i=0; i < this._no_tabs; i++)
			{
				if (i == p_id){
					var _html = $(this._urls[i]).text();
				}
				else{
					var _html = this._urls[i];
				}
				$('#'+ this._tabs_id[i]).html( _html );
			}
		}
	}
	
	this._init();
	
}