﻿//DECLARATION
var counter;
var imgSRC = new Array(6); 
var anchorHREF = new Array(6);

//SET VARIABLES
counter = 0;


imgSRC[0] = "Images/AnimatedImages/Schauenburg_logo.jpg";
imgSRC[1] = "Images/AnimatedImages/LiveWireHarnesses.jpg";
imgSRC[2] = "Images/AnimatedImages/grant.jpg";
imgSRC[3] = "Images/AnimatedImages/Improvement.jpg";
imgSRC[4] = "Images/AnimatedImages/Tempo.jpg";
imgSRC[5] = "Images/AnimatedImages/ContractArt.jpg";
imgSRC[6] = "Images/AnimatedImages/Paramedic.jpg";

anchorHREF[0] = "http://www.schauenburg.ca";
anchorHREF[1] = "http://www.livewireharnesses.com";
anchorHREF[2] = "http://www.grantequipment.ca";
anchorHREF[3] = "http://www.ncimprovements.com";
anchorHREF[4] = "http://www.contract-art.com";
anchorHREF[5] = "http://www.tempotime.net";
anchorHREF[6] = "http://www.opastore.ca";


//CALL FUNCTION WITH 5 SECOND DELAY
setTimeout('nextImage()',5000);


function nextImage(){
   document.getElementById('RotatingLinks').href = anchorHREF[counter]
   document.getElementById('RotatingImages').src = imgSRC[counter]
   
   counter++;
   if (counter >= 7){counter=0;}
   setTimeout('nextImage()',5000); 
}



 
