// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
var Pict = new Array();
var Picture = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'photo-gallery/clients/philips.jpg'
Pic[1] = 'photo-gallery/clients/airtel.jpg'
Pic[2] = 'photo-gallery/clients/amul.jpg'
Pic[3] = 'photo-gallery/clients/bajaj.jpg'
Pic[4] = 'photo-gallery/clients/castrol.jpg'
Pic[5] = 'photo-gallery/clients/citibank.jpg'
Pic[6] = 'photo-gallery/clients/hdfcbank.jpg'
Pic[7] = 'photo-gallery/clients/icicibank.jpg'
Pic[8] = 'photo-gallery/clients/idea.jpg'
Pic[9] = 'photo-gallery/clients/jindal.jpg'
Pic[10] = 'photo-gallery/clients/johnson.jpg'
Pic[11] = 'photo-gallery/clients/kotak.jpg'
Pic[12] = 'photo-gallery/clients/ranbaxy.jpg'
Pic[13] = 'photo-gallery/clients/reliance.jpg'
Pic[14] = 'photo-gallery/clients/sony.jpg'
Pic[15] = 'photo-gallery/clients/thermax.jpg'
Pic[16] = 'photo-gallery/clients/tata.jpg'
Pic[17] = 'photo-gallery/clients/wipro.jpg'
Pic[18] = 'photo-gallery/clients/wockhardt.jpg'
Pic[19] = 'photo-gallery/clients/americanexpress.jpg'
Pic[20] = 'photo-gallery/clients/cadbury.jpg'
Pic[21] = 'photo-gallery/clients/gecapital.jpg'
Pic[22] = 'photo-gallery/clients/iciciprodential.jpg'
Pic[23] = 'photo-gallery/clients/cipla.jpg'
Pic[24] = 'photo-gallery/clients/bharti.jpg'
Pic[25] = 'photo-gallery/clients/casio.jpg'
Pic[26] = 'photo-gallery/clients/ericsson.jpg'
Pic[27] = 'photo-gallery/clients/jetairways.jpg'
Pic[28] = 'photo-gallery/clients/nestle.jpg'
Pic[29] = 'photo-gallery/clients/emcure.jpg'//***
Pic[30] = 'photo-gallery/clients/hll.jpg'
Pic[31] = 'photo-gallery/clients/hutch.jpg'
Pic[32] = 'photo-gallery/clients/icici.jpg'
Pic[33] = 'photo-gallery/clients/l&t.jpg'
Pic[34] = 'photo-gallery/clients/patni.jpg'
Pic[35] = 'photo-gallery/clients/sita.jpg'
Pic[36] = 'photo-gallery/clients/travelcorporation.jpg'
Pic[37] = 'photo-gallery/clients/le passage.jpg'
Pic[38] = 'photo-gallery/clients/cox.jpg'


//Pic[19] = 'photo-gallery/clients/thermax.jpg'
//Pic[20] = 'photo-gallery/clients/thermax.jpg'

//Pict[0] = 'gifs/unique-hardware-a.gif'
//Pict[1] = 'gifs/unique-hardware-b.jpg';



// do not edit anything below this line
var t;
var j = 0,k=0;
var p = Pic.length;
var q = Pict.length;


var preLoad = new Array();
var preLoad2 = new Array();


for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}

for (i = 0; i < q; i++) {
preLoad2[i] = new Image();
preLoad2[i].src = Pict[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.SlideShow1.style.filter="blendTrans(duration=2)";
//document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration)";
//document.images.SlideShow1.filters.blendTrans.Apply();



}
document.images.SlideShow.src = preLoad[k].src;
//document.images.SlideShow.src = preLoad2[j].src;


if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
//document.images.SlideShow.filters.blendTrans.Play();

}
j = j + 1;
k = k + 1;
if (j > (q - 1))j = 0;
if(k>(p-1)) k=0;
{
}
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->
