function rollBanner(){

  window.clearTimeout(timeOutId);

  showNoticia(numeroDoBoxHomeSendoExibido);

  timeOutId = setTimeout(function(){
			rollBanner(numeroDoBoxHomeSendoExibido);
      numeroDoBoxHomeSendoExibido++;
      if (numeroDoBoxHomeSendoExibido>4)
        numeroDoBoxHomeSendoExibido=1;
		},5000
	);

}


function setBoxHome(){

  // esconde as noticias que não estao sendo exibidas
  for (i=2; i<5; i++)
    $('#imagem-'+i).hide();

}


function showNoticia(noticia){

  var anterior;

  // econde a anterior suavemente
  if (noticia==1)
    anterior = 4;
  else
    anterior = noticia - 1;

  $('#imagem-'+anterior).hide('slow');

  // esconde todas as noticias
  for (i=1; i<6; i++)
    $('#imagem-'+i).hide();

  // Exibe a noticia selecionada
  $('#imagem-'+noticia).show('slow');

}

