// JavaScript Document
var adtimer
var adcounter
var textads = new Array()

textads[0]='<h1>Internet is synonymous to business today. Your Website can be your best salesman, We strongly believe. Website today is the face of your business.</h1>'

textads[1]='<h1>Techview advocates a new business design, one that emphasizes a finely tuned integration of business, technology, people and process.</h1>'

var adcounter=Math.floor(Math.random()*(textads.length))

function changeRandomTextAd(){
   var oldAD = document.getElementById('hpText').innerHTML;
   var newAD = textads[adcounter];
   document.getElementById('hpText').innerHTML = newAD;

if (adcounter < ((textads.length)-1))
{
adcounter++
}
else
{
adcounter=0
}

adtimer=setTimeout("changeRandomTextAd()",5500)
} 
