<!--
function makeArray(q){
for(i=1 ; i < q ; i++){this[i]=0}}
w=1;
howmanysites=4; // How many sites are listed below?

Sites = new makeArray(howmanysites);

Sites[1] = "http://www.agemar.it|  - - - Children up to 4 years old travel free (subject to conditions) - - -";
Sites[2] = "http://www.agemar.it|  - - - Take your pet animal free of charge - - -";
Sites[3] = "http://www.agemar.it|  - - - Children aged 4 to 12 years receive a 50% fare discount - - -";
Sites[4] = "http://www.agemar.it|  - - - Take your bicycle free of charge - - -";

function showSites() {
if (w > howmanysites) { w=1; };
var string=Sites[w] + "";
var split=string.indexOf("|");
var url=string.substring(0,split);
var word=string.substring(split + 1,string.length);
//document.form.url.value=url;
document.form.rotator.value=word;
w+=1;
window.setTimeout('showSites()',4000);

}
// End -->