
var SLIDE_fade = 1;
var SLIDE_load = new Array();
var SLIDE_status, SLIDE_timeout;
var SLIDE_actual = SLIDE_text.length-1;
for (i = 1; i <= SLIDE_text.length-1; i++)
{
  //SLIDE_pic[i] = 'ev'+i+'.jpg';
  SLIDE_load[i] = new Image();
  SLIDE_load[i].src = SLIDE_pic[i].caminho;
}
var SLIDE_count = SLIDE_pic.length-1;
function SLIDE_start()
{
  //document.getElementById('tdconteudoimagem').style.width=larguraimg;
  //document.getElementById('tdconteudoimagem').style.width=document.getElementById('tabela_slider').offsetWidth;
  
  document.getElementById('tdconteudoimagem').style.height=aluraimg;
  document.getElementById('olink').href = LINK_SLIDE[SLIDE_actual].link;
  document.getElementById('olink').target = LINK_SLIDE[SLIDE_actual].destino;
  document.getElementById('SLIDE_play').src = pastabase + 'play.png';
  document.getElementById('SLIDE_pause').src = pastabase + 'pause_desabilitado.png';
  
  if (SLIDE_pic[SLIDE_actual].tipo == 'img'){
	  document.images.SLIDE_picBox.src = SLIDE_load[SLIDE_actual].src;
	  document.getElementById('objflash').style.display = 'none';
	  document.getElementById('SLIDE_picBox').style.display = 'block';
  }else{
	  document.getElementById('objflash').style.display = 'block';	
 	  document.getElementById('SLIDE_picBox').style.display = 'none';
 	  document.getElementById('objflash').setAttribute("movie", SLIDE_pic[SLIDE_actual].caminho);
  }  
  document.getElementById("SLIDE_textBox").innerHTML= SLIDE_text[SLIDE_actual];
}
function posicao(oalvo){
    alvo = document.getElementById(oalvo);
    var parent = alvo;
    for(var ol=alvo.offsetLeft, ot=alvo.offsetTop; parent=parent.offsetParent; )
       {ol+=parent.offsetLeft; ot+=parent.offsetTop;}
	    return {x:parseInt(ol),y:parseInt(ot),l:alvo.width,a:alvo.height};
    }
function posiciona_texto(){
var oobj;
if (SLIDE_pic[SLIDE_actual].tipo == 'img'){
	oobj = 'SLIDE_picBox';
}else{
	oobj = 'objflash';//oflash;
}
    texto.style.left = posicao(oobj).x;
    texto.style.width = posicao(oobj).l;
    texto.style.top = ((parseInt(posicao(oobj).y) + parseInt(posicao(oobj).a)) - parseInt(texto.offsetHeight));
}
function SLIDE_play()
{
  document.getElementById('SLIDE_play').src = pastabase + 'play_disabilitado.png';
  document.getElementById('SLIDE_pause').src = pastabase + 'pause.png';
	  SLIDE_actual++;
	  SLIDE_slide();
	  SLIDE_status = 'SLIDE_play';
	  SLIDE_timeout = setTimeout("SLIDE_play()",TEMPO_SLIDE[SLIDE_actual]);
}
function slide_pause()
{
  clearTimeout(SLIDE_timeout);
  SLIDE_status = 'SLIDE_pause';
  
  document.getElementById('SLIDE_play').src = pastabase + 'play.png';
  document.getElementById('SLIDE_pause').src = pastabase + 'pause_desabilitado.png';
}
function slide_back()
{
  clearTimeout(SLIDE_timeout);
  SLIDE_actual--;
  SLIDE_slide();
  if (SLIDE_status != 'SLIDE_pause') SLIDE_timeout = setTimeout("SLIDE_play()",TEMPO_SLIDE[SLIDE_actual]);

}

function slide_forward()
{
  clearTimeout(SLIDE_timeout);
  SLIDE_actual++;
  SLIDE_slide()
  if (SLIDE_status != 'SLIDE_pause') SLIDE_timeout = setTimeout("SLIDE_play()",TEMPO_SLIDE[SLIDE_actual]);
}
function SLIDE_slide()
{
  if (SLIDE_status != 'SLIDE_pause')
  {
  
     document.getElementById('SLIDE_play').src = pastabase + 'play_disabilitado.png';
     document.getElementById('SLIDE_pause').src = pastabase + 'pause.png';

  }
  if (SLIDE_actual > (SLIDE_count)) SLIDE_actual=1;
  if (SLIDE_actual < 1) SLIDE_actual = SLIDE_count;
  if (document.all)
  {
	  document.getElementById("SLIDE_textBox").style.background = "transparent";
	  document.images.SLIDE_picBox.style.filter="blendTrans(duration=2)";
	  document.images.SLIDE_picBox.style.filter="blendTrans(duration=SLIDE_fade)";
	  document.images.SLIDE_picBox.filters.blendTrans.Apply();
  }
  if (SLIDE_pic[SLIDE_actual].tipo == 'img'){
      //document.getElementById('SLIDE_picBox').style.width=larguraimg;
      //document.getElementById('tdconteudoimagem').style.width=document.getElementById('tabela_slider').offsetWidth;
      document.getElementById('SLIDE_picBox').style.height=aluraimg;
	  document.images.SLIDE_picBox.src = SLIDE_load[SLIDE_actual].src;
	  document.getElementById('objflash').style.display = 'none';
	  document.getElementById('SLIDE_picBox').style.display = 'block';
  }else{
	  document.getElementById('objflash').style.display = 'block';	
 	  document.getElementById('SLIDE_picBox').style.display = 'none';
 	  document.getElementById('objflash').setAttribute("movie", SLIDE_pic[SLIDE_actual].caminho);
  }  
  if (document.getElementById) document.getElementById("SLIDE_textBox").innerHTML= SLIDE_text[SLIDE_actual];
  if (document.getElementById) document.getElementById("olink").href = LINK_SLIDE[SLIDE_actual].link;
  if (document.getElementById) document.getElementById("olink").target = LINK_SLIDE[SLIDE_actual].destino;
  if (document.all) document.images.SLIDE_picBox.filters.blendTrans.Play();
  posiciona_texto();
}
function SLIDE_speeds(SLIDE_valgt)
{
  TEMPO_SLIDE[SLIDE_actual] = SLIDE_valgt.options[SLIDE_valgt.selectedIndex].value;
}
