var howOften = 2; //number often in seconds to rotate
var current = 0; //start the counter at 0

// place your images, text, etc in the array elements here
var items = new Array();
items[0]="Choose your language"; //an image
items[1]="S&eacute;lectionnez votre pays"; //a linked image
items[2]="Bitte w&auml;hlen Sie Ihr Land";
items[3]="Selezionate il vostro paese";
items[4]="Seleccione su pa&iacute;s";

function rotater() {
document.getElementById("languageselectiontext").innerHTML = items[current];
current = (current==items.length-1) ? 0 : current + 1;
setTimeout("rotater()",howOften*1000);
}
window.onload=rotater;
