// JavaScript för Agape webbsajt
// copyright 2010
// Utvecklare: Michael Lindau


var counter =0;
ID = window.setTimeout("imagePlayer();",2000);

//Hantera bildväxling efter några sekunder
function imagePlayer(){

obj = document.getElementById("sidebarpicture");
counter++;
if(counter <=7){
obj.src ="images/agape_bildspel" + counter + ".jpg";
}
 else {
 counter = 0;
 }

ID = window.setTimeout("imagePlayer();",3000);
}



