function switchImage(imgName, imgSrc) 
{
  if (document.images)
  {
    if (imgSrc != "none")
    {
      document.images[imgName].src = imgSrc;
    }
  }
}

var mySlideList3 = ['slike/male/jovo-djurasovic.jpg', 'slike/male/cetko-dragicevic.jpg', 'slike/male/Trise-Ekmecic.jpg', 'slike/male/Lazar-Bulut-Colo.jpg', 'slike/male/Vlado-Bulut-i-Djuro-Ekmecic.jpg', 'slike/male/familijaDragicevic.mala.jpg'];
var mySlideAlt3 = ['', '', '', '', '', '', ''];
var mySlideLocation3 = ['#', '#', '#', '#', '#', '#'];
var mySlideShow3 = new SlideShow(mySlideList3, 'slika3', 3000, "mySlideShow3");
function SlideShow(slideList, image, speed, name)          
{
  this.slideList = slideList;
  this.image = image;
  this.speed = speed;
  this.name = name;
  this.current = 0;
  this.timer = 0;
}
SlideShow.prototype.play = SlideShow_play;  
function SlideShow_play()       
{
  with(this)
  {
    if(current++ == slideList.length-1) current = 0;
    switchImage(image, slideList[current]);
//	document.getElementById("slika3").href = mySlideLocation3[current];
	document.slika3.alt = mySlideAlt3[current];
    clearTimeout(timer);
    timer = setTimeout(name+'.play()', speed);
  }
}
