//function $(id) {return document.getElementById(id);}

function TopSlides() {
	//this.element = new Object();
	this.slots =  new Array();
	this.slot0=null;
	this.slot1=null;
	this.slot2=null;
	this.count=0;
	this.current=0;
	this.time=5;
	this.ttick=0;
	this.play=true;
	this.ii=0;
	
	this.unmarkAll = function (pre) {
		for (i=1;i<6;i++)
			if ($(pre+i)) $(pre+i).src = "img/"+i+"_szar.gif";
	}
	this.markN=function(pre,n) {
		$(pre+n).src="img/"+n+".gif";
	}
	this.addElement = function(tytul,tresc,data,thumb,link) {
		el = new Object();
		el.tytul=tytul;
		el.tresc=tresc;
		el.data=data;
		el.thumb=thumb;
		el.link=link;
		this.slots[this.count]=el;
		this.count++;		
	}
	

	
	this.action = function (from) {
		idslot = from.id;
		slot = idslot.substr(1);
		slot=slot-1;
		//alert(slot);
		this.unmarkAll("n");
		this.markN("n",slot+1);
		obj = this.slots[slot];
//		$("t_tytul").innerHTML=obj.nazwa;
//		$("t_tresc").innerHTML=obj.tresc;
//		$("t_img").src=obj.thumb;
//		$("t_link").href=obj.link;
//		$("t_cena1").innerHTML=obj.cena1;
//		$("t_cena2").innerHTML=obj.cena2;
		
		$("news_data").innerHTML = obj.data;
		$("news_tytul").innerHTML = obj.tytul;
		$("news_tresc").innerHTML = obj.tresc;
		$("news_foto").src = obj.thumb;
		$("news_link").href=obj.link;
		return;
		
	}
	

	
}
