function sonda()
{
	this.sondaKategorie;
	this.sondaElem;
	this.cache = new cache();

	this.parsujObjekty = function()
	{
		for(i in parsuj)
		{
//			console.log('this.'+i+' = new '+i+'($(\''+i+'\'))');
			eval('this.'+i+' = new '+i+'($(\''+i+'\'))');
		}
	}

	this.init = function()
	{
		this.parsujObjekty();
	}	
	
	this.init();
}
