var speed = 200
var Pic = new Array() 
Pic[0] = '/gfx/animation/1.gif'
Pic[1] = '/gfx/animation/2.gif'
Pic[2] = '/gfx/animation/3.gif'
Pic[3] = '/gfx/animation/4.gif'
Pic[4] = '/gfx/animation/5.gif'
Pic[5] = '/gfx/animation/6.gif'
var t
var j = 0
var p = Pic.length
var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}
function runSlideShow(){
   document.images.SlideShow.src = preLoad[j].src
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', speed)
}


function Drukuj(button)
{
	self.focus();
	print();
	if (isIE) button.blur();
}
