/*
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]="<a href='http://www.hp.com/' target='_blank'><img src='images/logos/3com.gif' border='0'></a>"
item[1]="<a href='http://www.antara.net/' target='_blank'><img src='images/logos/antara.gif' border='0'></a>"
item[2]="<a href='http://www.cisco.com/' target='_blank'><img src='images/logos/cisco.gif' border='0'></a>"
item[3]="<a href='http://www.emc.com/' target='_blank'><img src='images/logos/emc2.gif' border='0'></a>"
item[4]="<a href='http://www.netapp.com/' target='_blank'><img src='images/logos/netapp.gif' border='0'></a>"
item[5]="<a href='http://www.sap.com/' target='_blank'><img src='images/logos/sap.gif' border='0'></a>"
item[6]="<a href='http://www.webb-consult.com/' target='_blank'><img src='images/logos/webbconsulting.gif' border='0'></a>"
item[7]="<a href='http://www.webex.com/' target='_blank'><img src='images/logos/webex.gif' border='0'></a>"
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==7) current=0
else current++
setTimeout("changeItem()",3000)
}
window.onload=changeItem
//-->
