
//first cycle of images
adImages = new Array("../images/activate.gif", "../images/ecommerce3.gif", "../images/economy.gif", "../images/com.gif")
thisAd = 0
imgCt = adImages.length

function rotate() {	
	if (document.images) {	
			thisAd++
			if (thisAd == imgCt) {	
			thisAd = 0	
			}
			document.adBanner.src=adImages[ thisAd ]
			setTimeout ("rotate()" , 5 * 1000 )
	}
	}

//second cycle of images
adImages1 = new Array("../images/email1.gif", "../images/enews.gif", "../images/http1.gif", "../images/org.gif")
thisAd1 = 0
imgCt1 = adImages1.length

function rotate1() {	
	if (document.images) {	
			thisAd1++
			if (thisAd1 == imgCt1) {	
			thisAd1 = 0	
			}
			document.adBanner1.src=adImages1[ thisAd1 ]
			setTimeout ("rotate1()" , 5 * 1000 )
	}
	}

//third cycle of images
adImages2 = new Array("../images/logon.gif", "../images/engine.gif", "../images/emc.gif", "../images/results.gif")
thisAd2 = 0
imgCt2 = adImages2.length

function rotate2() {	
	if (document.images) {	
			thisAd2++
			if (thisAd2 == imgCt2) {	
			thisAd2 = 0	
			}
			document.adBanner2.src=adImages2[ thisAd2 ]
			setTimeout ("rotate2()" , 5 * 1000 )
	}
	}
	
//fourth cycle of images
adImages3 = new Array("../images/secure.gif", "../images/web.gif", "../images/security.gif", "../images/ecommerce3.gif")
thisAd3 = 0
imgCt3 = adImages3.length

function rotate3() {	
	if (document.images) {	
			thisAd3++
			if (thisAd3 == imgCt3) {	
			thisAd3 = 0	
			}
			document.adBanner3.src=adImages3[ thisAd3 ]
			setTimeout ("rotate3()" , 5 * 1000 )
	}
	}

//fifth cycle of images
adImages4 = new Array("../images/firewall.gif", "../images/privacy.gif", "../images/web1.gif", "../images/activate.gif")
thisAd4 = 0
imgCt4 = adImages4.length

function rotate4() {	
	if (document.images) {	
			thisAd4++
			if (thisAd4 == imgCt4) {	
			thisAd4 = 0	
			}
			document.adBanner4.src=adImages4[ thisAd4 ]
			setTimeout ("rotate4()" , 3 * 1000 )
	}
	}



