// JavaScript Document

<!--

//Pixelating Image slideshow
//Copyright Dynamic Drive 2001
//Visit http://www.dynamicdrive.com for this script

//specify interval between slide (in mili seconds)
var slidespeed=3000
//specify images
var slideimages=new Array("http://www.zs4.walbrzych.pl/fotki_new/data/thumbnails/4/111215_9408.jpg",
						  "http://www.zs4.walbrzych.pl/fotki_new/data/thumbnails/4/111215_9443.jpg",
						  "http://www.zs4.walbrzych.pl/fotki_new/data/thumbnails/4/111215_9507.jpg",
						  "http://www.zs4.walbrzych.pl/fotki_new/data/thumbnails/4/111215_9503.jpg",
						  "http://www.zs4.walbrzych.pl/fotki_new/data/thumbnails/4/111215_9517.jpg")
//specify corresponding links
var slidelinks=new Array("http://www.zs4.walbrzych.pl/fotki_new/index.php",
						 "http://www.zs4.walbrzych.pl/fotki_new/index.php",
						 "http://www.zs4.walbrzych.pl/fotki_new/index.php",
						 "http://www.zs4.walbrzych.pl/fotki_new/index.php",
						 "http://www.zs4.walbrzych.pl/fotki_new/index.php")

var imageholder=new Array()
var ie55=window.createPopup
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
window.location=slidelinks[whichlink]
}

//-->

