/*
Rotating image or text(You can use for changing banners)
Author: Narayan Chand Thakur
Source: http://ncthakur.itgo.com/
This may be used freely as long as this message is intact.
*/

//you may add your image file or text below
var item=new Array()
item[0]="<strong><font face='arial' size='4' color='green'>Welcome</font></strong>"
item[1]="<strong><font face='arial' size='4' color='green'>Failte!</font></strong>"
item[2]="<strong><font face='arial' size='4' color='green'>Willkommen!</font></strong>"
item[3]="<strong><font face='arial' size='4' color='green'>Bienvenue!</font></strong>"
var current=0

var ns6=document.getElementById&&!document.all
function changeItem(){
if(document.layers){
document.layer1.document.write(item[current])
document.layer1.document.close()
}
if(ns6)document.getElementById("div1").innerHTML=item[current]
{
if(document.all){
div1.innerHTML=item[current]
}
}
if (current==3) current=0
else current++
setTimeout("changeItem()",2000)
}
window.onload=changeItem
