$(document).ready(function() {
    $('.slideshow1').cycle({
		fx: 'zoom', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 4000
	});
});

$(document).ready(function() {
    $('.slideshow2').cycle({
		fx: 'zoom', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 6000
	});
});

$(document).ready(function() {
    $('.slideshow3').cycle({
		fx: 'zoom', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 5000
	});
});
$(document).ready(function() {
    $('.slideshow4').cycle({
		fx: 'zoom', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 3000
	});
});

$(document).ready(function() {
    $('.slideshow5').cycle({
		fx: 'zoom', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 5000
	});
});

$(document).ready(function() {
    $('.slideshow6').cycle({
		fx: 'zoom', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 4000
	});
});

// JavaScript Document
// AUMENTAR E DIMINUI FONTE ==============================================================================================
var tagAlvo = new Array('p'); 
 
// Especificando os possíveis tamanhos de fontes, poderia ser: x-small, small...
var tamanhos = new Array( '9px','10px','11px','12px','13px','14px','15px','16px');
var tamanhoInicial = 2;
 
function mudaTamanho( idAlvo,acao ){
  if (!document.getElementById) return
  var selecionados = null,tamanho = tamanhoInicial,i,j,tagsAlvo;
  tamanho += acao;
  if ( tamanho < 0 ) tamanho = 0;
  if ( tamanho > 6 ) tamanho = 6;
  tamanhoInicial = tamanho;
  if ( !( selecionados = document.getElementById( idAlvo ) ) ) selecionados = document.getElementsByTagName( idAlvo )[ 0 ];
  
  selecionados.style.fontSize = tamanhos[ tamanho ];
  
  for ( i = 0; i < tagAlvo.length; i++ ){
    tagsAlvo = selecionados.getElementsByTagName( tagAlvo[ i ] );
    for ( j = 0; j < tagsAlvo.length; j++ ) tagsAlvo[ j ].style.fontSize = tamanhos[ tamanho ];
  }
}
// AUMENTAR E DIMINUI FONTE ==============================================================================================


// ABRIR E FECHAR DIV ------==============================================================================================
function showdiv(ativar,id1,id2)
{ var A=document.getElementById(id1);
var B=document.getElementById(id2);
if(ativar=='sim')
{
B.style.display = 'block';
A.style.display= 'none';
}
else
{
A.style.display = 'block';
B.style.display= 'none';
}
}
// ABRIR E FECHAR DIV ------==============================================================================================