var SlideShowSpeed = 3000;
var CrossFadeDuration = 3;
var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

Picture[1] = '/i/slideshow/oracle.gif';
Picture[2]  = '/i/slideshow/motologo.gif';
Picture[3]  = '/i/slideshow/navy.gif';
Picture[4]  = '/i/slideshow/verizon-small.gif';
Picture[5]  = '/i/slideshow/ey.gif';
Picture[6]  = '/i/slideshow/ibm.gif';
Picture[7]  = '/i/slideshow/cisco.gif';
Picture[8]  = '/i/slideshow/dell.gif';
Picture[9]  = '/i/slideshow/ericsson.gif';
Picture[10] = '/i/slideshow/fedex.gif';
Picture[11] = '/i/slideshow/government.gif';
Picture[12] = '/i/slideshow/hp.gif';
Picture[13] = '/i/slideshow/intel.gif';
Picture[14] = '/i/slideshow/lockheed-martin.gif';
Picture[15] = '/i/slideshow/lucent.gif';
Picture[16] = '/i/slideshow/nec.gif';
Picture[17] = '/i/slideshow/nokia_logo.gif';
Picture[18] = '/i/slideshow/nortel.gif';
Picture[19] = '/i/slideshow/nsa.gif';
Picture[20] = '/i/slideshow/oracle.gif';
Picture[21] = '/i/slideshow/qchome_logo.gif';
Picture[22] = '/i/slideshow/siemens.gif';
Picture[23] = '/i/slideshow/sprint_rw.gif';
Picture[24] = '/i/slideshow/t-mobile.gif';
Picture[25] = '/i/slideshow/us-air-force.gif';
Picture[26] = '/i/slideshow/us-army.gif';
Picture[27] = '/i/slideshow/stratos.gif';
Picture[28] = '/i/slideshow/a11.gif';
Picture[29] = '/i/slideshow/dell.gif';
Picture[30] = '/i/slideshow/t-mobile.gif';
Picture[31] = '/images/logos/microsoft.gif';

Caption[1]  = "Oracle";
Caption[2]  = "Motorola";
Caption[3]  = "US Navy";
Caption[4]  = "Verizon Wireless";
Caption[5]  = "Ernest & Young";
Caption[6]  = "IBM";
Caption[7]  = "Cisco";
Caption[8]  = "DELL";
Caption[9]  = "Ericsson";
Caption[10]  = "FEDEX";
Caption[11]  = "US Government";
Caption[12]  = "HP";
Caption[13]  = "Intel";
Caption[14]  = "Lockheed Martin";
Caption[15]  = "Lucent Technologies";
Caption[16]  = "NEC";
Caption[17]  = "Nokia";
Caption[18]  = "Nortel Networks";
Caption[19]  = "NSA";
Caption[20]  = "Oracle";
Caption[21]  = "Qualcomm";
Caption[22]  = "Siemens";
Caption[23]  = "Sprint Wireless";
Caption[24]  = "T-Mobile";
Caption[25]  = "US Air Force";
Caption[26]  = "US Army";
Caption[27]  = "Stratos";
Caption[28]  = "ATT Wireless";
Caption[29]  = "DELL";
Caption[30]  = "T-Mobile";
Caption[31]  = "Microsoft";

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.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
 if (document.all) document.images.PictureBox.filters.blendTrans.Play();
 jss = jss + 1;
 if (jss > (pss)) jss=1;
 tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
window.onload = function() { runSlideShow(); }

