var testi_index = 1;



function testiticker(array_datat,array_name,array_place,array_date) 
{

 // load image
 elmt= document.getElementById("testi_text");
 elmt.innerHTML=array_datat[testi_index ];
 elmt= document.getElementById("testi_name");
 elmt.innerHTML=array_name[testi_index ];
 elmt= document.getElementById("testi_place");
 elmt.innerHTML=array_place[testi_index ];
 elmt= document.getElementById("testi_date");
 elmt.innerHTML=array_date[testi_index ]; 
 
 // increment counter
 testi_index = testi_index +1;
 
 // when at the end, start again
 if(testi_index ==array_datat.length) { testi_index=0; }
}

 


