function tVendors(id) {
	this.idKlasy = id;
	this.formDEFAULT = "/activeshop24/index_ajax.php";
	this.className = "Produkt";
	this.grabDatafun = "pobierzListeProduktowWgProducenta";
	this.listElement = "#TabelaListaProduktow";
	this.display = this.listElement;
	this.perPage = 10;
	this.idRekordu = "Produkt";	
	this.complex = 1;
		
	this.doOwnScaffold = function(rzad,item,i) {
		addTD(rzad,'<a href="/activeshop24/Produkty/'+item.id+'_'+item.id_txt+'.html">'+item.name+'</a>');
		$(this.listElement)[0].appendChild(rzad);
	}
	
	this.after_scaffold = function(i) {
		if (i.out != -1) {
			tAHP.outMode = "tr";
			tAHP.totalCount = i.count;
			tAHP.createNavBar();
			$("#produktyProducenta").show();
		}
	}
}

tVendors.prototype = new tAjaxHelper();
var tV = new tVendors("tV");

$(document).ready(function(){
	tAHP.startPage = 1;
	tV.params = Array();
	tV.params.grabData = $("#vendorID")[0].value;	
	tV.displayAll();
});

