
//specify interval between slide (in mili seconds)
var slidespeed=2200

//specify images
var slideimages=new Array("hlibrary/SAL-AKC.JPG","hlibrary/DEC-505.JPG","hlibrary/DEC-508.JPG","hlibrary/DEC-585.JPG","hlibrary/DEC-592.JPG","hlibrary/DEC-597.JPG","hlibrary/DEC-602.JPG","hlibrary/DEC-605.JPG","hlibrary/DEC-608.JPG")

//specify corresponding links
var slidelinks=new Array("http://www.nb-net.hr/maloprodaja/index.html","http://www.nb-net.hr/maloprodaja/index.html","http://www.nb-net.hr/maloprodaja/index.html","http://www.nb-net.hr/maloprodaja/index.html","http://www.nb-net.hr/maloprodaja/index.html","http://www.nb-net.hr/maloprodaja/index.html","http://www.nb-net.hr/maloprodaja/index.html","http://www.nb-net.hr/maloprodaja/index.html","http://www.nb-net.hr/maloprodaja/index.html")

var newwindow=1 //open links in new window? 1=yes, 0=no

var imageholder=new Array()
var ie=document.all
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
if (newwindow)
window.open(slidelinks[whichlink])
else
window.location=slidelinks[whichlink]
}

