// 

// <body onload="runSlideShow()">

//

// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 2000;
// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 2;

var Picture = new Array(); // don't change this

Picture[1] 	= 'clients/aegismedia.gif';
Picture[2] 	= 'clients/ageconcern.gif';
Picture[3] 	= 'clients/bo.gif';
Picture[4] 	= 'clients/bebo.gif';
Picture[5] 	= 'clients/blackberry.gif';
Picture[6] 	= 'clients/carnabyst.gif';
Picture[7] 	= 'clients/cluttons.gif';
Picture[8] 	= 'clients/dtz.gif';
Picture[9] 	= 'clients/eashaw.gif';
Picture[10] 	= 'clients/FINSBURY.gif';
Picture[11] 	= 'clients/foxtons.gif';
Picture[12] 	= 'clients/fpdsavills.gif';
Picture[13] 	= 'clients/FTSE.gif';
Picture[14] 	= 'clients/hanjin-shipping.gif';
Picture[15] 	= 'clients/haysrecruitment.gif';
Picture[16] 	= 'clients/ice.gif';
Picture[17] 	= 'clients/IOPC.gif';
Picture[18] 	= 'clients/pfizer.gif';
Picture[19] 	= 'clients/shaftesbury.gif';
Picture[20] 	= 'clients/sonalibank.gif';
Picture[21] 	= 'clients/tommyhilfiger.gif';
Picture[22] 	= 'clients/umbrologo.gif';
Picture[23] 	= 'clients/winkworthlogo.gif';

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
