// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images/customer/airtel.gif'
Pic[1] = 'images/customer/ascent-tel.gif'
Pic[2] = 'images/customer/asianet.gif'
Pic[3] = 'images/customer/atl.gif'
Pic[4] = 'images/customer/callforeign.gif'
Pic[5] = 'images/customer/citycom.gif'
Pic[6] = 'images/customer/clay.gif'
Pic[7] = 'images/customer/exatt-tech.gif'
Pic[8] = 'images/customer/gsoft.gif'
Pic[9] = 'images/customer/gulfgold.gif'
Pic[10] = 'images/customer/ilelfone.gif'
Pic[11] = 'images/customer/instanet.gif'
Pic[12] = 'images/customer/iol.gif'
Pic[13] = 'images/customer/karuturi.gif'
Pic[14] = 'images/customer/mtnl.gif'
Pic[15] = 'images/customer/net4.gif'
Pic[16] = 'images/customer/pacenet.gif'
Pic[17] = 'images/customer/powertel.gif'
Pic[18] = 'images/customer/starcell.gif'
Pic[19] = 'images/customer/tata-com.gif'
Pic[20] = 'images/customer/tata-indcom.gif'
Pic[21] = 'images/customer/tsn.gif'
Pic[22] = 'images/customer/voicetec.gif'
Pic[23] = 'images/customer/ecommtech.gif'
Pic[24] = 'images/customer/you-tel.gif'
Pic[25] = 'images/customer/zylog.gif'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->

