// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

var SlideShowSpeed = 9000;
var CrossFadeDuration = 3;
var Picture = new Array();
var Caption = new Array();

Picture[1]  = 'imagens/s/slide001.jpg';
Picture[2]  = 'imagens/s/slide002.jpg';
Picture[3]  = 'imagens/s/slide003.jpg';
Picture[4]  = 'imagens/s/slide004.jpg';

Caption[1]  = "&raquo; <spam style='line-height:25px;' class='color'>TRANSPORTE EMPRESARIAL</spam><br />Executivos e funcion&aacute;rios de diversas empresas conveniadas s&atilde;o transportados diariamente por n&oacute;s. <strong>E voc&ecirc;?</strong>";
Caption[2]  = "&raquo; <spam style='line-height:25px;' class='color'>PEDIDO DE T&Aacute;XI ON-LINE</spam><br />V&aacute; para aonde desejar, na hora que escolher e com a T&aacute;xi Indaiatuba. <strong>Confian&ccedil;a e experi&ecirc;ncia</strong>.";
Caption[3]  = "&raquo; <spam style='line-height:25px;' class='color'>FROTA DE VE&Iacute;CULOS</spam><br />Trabalhamos <strong>apenas com ve&iacute;culos novos</strong>, quatro portas e com ar condicionado.";
Caption[4]  = "&raquo; <spam style='line-height:25px;' class='color'>RECEP&Ccedil;&Atilde;O EM AEROPORTOS E RODOVI&Aacute;RIAS</spam><br /><strong>Executivos</strong>, <strong>funcion&aacute;rios</strong> e <strong>turistas</strong>. Contamos com motoristas bil&iacute;ng&uuml;es, ve&iacute;culos sem  identifica&ccedil;&otilde;es e com vidros escurecidos.";

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);
}