<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 2000;
// 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] = 'cpic/3g.gif'
Pic[1] = 'cpic/accenture.gif'
Pic[2] = 'cpic/aurionpro.gif'
Pic[3] = 'cpic/aegis.gif'
Pic[4] = 'cpic/convergys.gif'
Pic[5] = 'cpic/countrywide.gif'
Pic[6] = 'cpic/coconut.gif'
Pic[7] = 'cpic/epicenter.gif'
Pic[8] = 'cpic/gtl.gif'
Pic[9] = 'cpic/hirco.gif'
Pic[10] = 'cpic/hp.gif'
Pic[11] = 'cpic/icici.gif'
Pic[12] = 'cpic/optionone.gif'
Pic[13] = 'cpic/pizzahut.gif'
Pic[14] = 'cpic/powerweave.gif'
Pic[15] = 'cpic/provogue.gif'
Pic[16] = 'cpic/prudential.gif'
Pic[17] = 'cpic/sitel.gif'
Pic[18] = 'cpic/steve.gif'
Pic[19] = 'cpic/stream.gif'
Pic[20] = 'cpic/sutherland.gif'
Pic[21] = 'cpic/transworks.gif'
Pic[22] = 'cpic/tws.gif'
Pic[23] = 'cpic/ubs.gif'
Pic[24] = 'cpic/ugam.gif'
Pic[25] = 'cpic/wipro.gif'
Pic[26] = 'cpic/zenta.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);
}
// 