// JavaScript Document

/*
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='6114.html'><img src='images/homePage/homePage_01.jpg' border='0'></a>"
item[1]="<a href='10.htm'><img src='images/homePage/homePage_02.jpg' border='0'></a>"
item[2]="<a href='weights.html'><img src='images/homePage/homePage_03.jpg' border='0'></a>"
item[3]="<a href='chain.html'><img src='images/homePage/homePage_04.jpg' border='0'></a>"
item[4]="<a href='301.htm'><img src='images/homePage/homePage_05.jpg' border='0'></a>"
item[5]="<a href='107.html'><img src='images/homePage/homePage_06.jpg' border='0'></a>"
item[6]="<a href='4012.html'><img src='images/homePage/homePage_07.jpg' border='0'></a>"
item[7]="<a href='TC02.html'><img src='images/homePage/homePage_08.jpg' border='0'></a>"
item[8]="<a href='weatherstrip.html'><img src='images/homePage/homePage_09.jpg' border='0'></a>"
item[9]="<a href='DH_F1-1.html'><img src='images/homePage/homePage_10.jpg' 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==5) current=0
else current++
setTimeout("changeItem()",5000)
}
window.onload=changeItem
//-->
