/*
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]="\"Due to the ever evolving and changing card market, analytics is becoming<br>a bare necessity- it is a hygiene factor for success.\"<br><br>Victor Koss - Partner, Booz \& Co."
item[1]="\"...CX-Analytics has the ability to help organizations understand how to improve and<br>broaden the adoption of analytics for optimal business performance.\"<br><br>Randy Betancourt, Senior Consultant, SAS"
item[2]="\"...CX-Analytics has a strong understanding of the overall market<br>and the needed and required analytics.\"<br><br>Mark O'Brien, Executive Vice President, Visa Europe"
item[3]="\"Our partnership with CX-Analytics helps us turn information<br>into meaningful and actionable data for our clients.\"<br><br>Gaylon Jowers, Jr., President, TSYS International"
item[4]="\"Non-efficient data management systems are a core issue in the industry.<br>CX-Analytics\' products address this core issue in a clear and very effective manner.\"<br><br>Frederik Vernede, Business Analyst, Booz \& Co."
item[5]="\"Keith Coulter understands all aspects of the industry.<br>This in-depth knowledge is very rare and very impressive.\"<br><br>Alan Gemes, Global Practice Leader, Booz \& Co."
<!-- Samples of how to embed images and text -->
<!--item[3]="<a href='#'><img src='image2.gif' border='0'></a>"-->
<!--item[4]="<strong><font face='arial' size='4' color='red'>Text without a Link!</font></strong>"-->
<!--item[5]="<a href='#'><font face='arial' size='4' color='darkgreen'><B>This text has Link</B></font></a>"-->

var numItems=item.length; //counts total items from item array

//var current=0  - old code
var current=Math.floor(numItems*Math.random())

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("rotatingBanner").innerHTML=item[current]
{
if(document.all){
rotatingBanner.innerHTML=item[current]
}
}
/*if (current==(numItems-1)) current=0
else current++
setTimeout("changeItem()",4000)*/
}
window.onload=changeItem
//-->
