
var netscape = 0;
var goodIE = 0;
var iLength;
var flag = 1;
var delay = 2400;
var	browserName = navigator.appName.substring(0,8);
var	browserVer = parseFloat(navigator.appVersion);




		
		
//rotating logo


// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 1;

var Picture = new Array(); // don't change this

// Specify the image files...06182007 - change image files 


//Picture[1]  = 'Cab Tech s_r_o_files/a.jpg';
//Picture[2]  = 'Cab Tech s_r_o_files/b.jpg';
//Picture[3]  = 'Cab Tech s_r_o_files/c.jpg';
//Picture[4]  = 'Cab Tech s_r_o_files/d.jpg';
//Picture[5]  = 'Cab Tech s_r_o_files/e.jpg';




Picture[1]  = 'Cab Tech s_r_o_files/a.jpg';
Picture[2]  = 'Cab Tech s_r_o_files/b.jpg';
Picture[3]  = 'Cab Tech s_r_o_files/c.jpg';
Picture[4]  = 'Cab Tech s_r_o_files/d.jpg';
Picture[5]  = 'Cab Tech s_r_o_files/e.jpg';



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 runAVXLogo(){
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('runAVXLogo()', SlideShowSpeed);
}

