var i=0;

var Images= Array(12);  //array for images
Images[0]='images/sponzorji/Spon1.jpg';  //first image
Images[1]='images/sponzorji/Spon2.jpg';  //second image
Images[2]='images/sponzorji/Spon3.jpg';  //third image
Images[3]='images/sponzorji/Spon4.jpg';
Images[4]='images/sponzorji/Spon5.jpg';
Images[5]='images/sponzorji/Spon6.jpg';  //first image
Images[6]='images/sponzorji/Spon7.jpg';  //second image
Images[7]='images/sponzorji/Spon8.jpg';  //third image
Images[8]='images/sponzorji/Spon9.jpg';
Images[9]='images/sponzorji/Spon10.jpg';
Images[10]='images/sponzorji/Spon11.jpg';
Images[11]='images/sponzorji/Spon12.jpg';

//function that starts the timer that changes the page content every 3 sec	
function loadContent()
{
  var newContent = setInterval("timerRun()", 5000); //timer that calls the function for the change of content every 3 sec
}

function timerRun()
{
  
  i ++;  //counter that counts the which content is displayed
  
  //a "loop" that goes through content that is displayed on the page
  if (i > 2)
  {
  	i = 0;
  }
  
  if(i==1)
  {
      document.getElementById('pics').setAttribute('src',Images[0]);
  	  document.getElementById('pics2').setAttribute('src',Images[1]);
	  document.getElementById('pics3').setAttribute('src',Images[2]);
	  document.getElementById('pics4').setAttribute('src',Images[3]);	
	  document.getElementById('pics5').setAttribute('src',Images[4]);
	  document.getElementById('pics6').setAttribute('src',Images[10]);
  }
  if(i==2)
  {
  	  document.getElementById('pics').setAttribute('src',Images[5]);
 	  document.getElementById('pics2').setAttribute('src',Images[6]);
	  document.getElementById('pics3').setAttribute('src',Images[7]);	
	  document.getElementById('pics4').setAttribute('src',Images[8]);
 	  document.getElementById('pics5').setAttribute('src',Images[9]);
	  document.getElementById('pics6').setAttribute('src',Images[11]);
  }
}
