num_item = 4;
banner = new Array(num_item);
for(i = 1; i <= num_item; i++)
{
banner[i] = new Array(3);
for(j = 1; j <= 3; j++)
{
banner[i][j] = "";
}
}
banner[1][1] = "images/img/01.jpg";
banner[1][2] = "Arroz a Três Queijos";
banner[1][3] = "Frite a cebola no óleo até murchar,
junte o arroz e refogue bem.
Regue com vinho e mexa até secar.
";
banner[2][1] = "images/img/02.jpg";
banner[2][2] = "Broinhas de Fubá";
banner[2][3] = "Leve ao fogo uma panela com a água,
o leite, a margarina, o açúcar e o sal.
Quando abrir fervura, tire do fogo e junte o fubá,
";
banner[3][1] = "images/img/03.jpg";
banner[3][2] = " Broas de mel";
banner[3][3] = "Misturar à farinha todos os ingredientes,
amassando bem.
Formar broinhas e levar ao forno quente por 20 minutos.
";
banner[4][1] = "images/img/04.jpg";
banner[4][2] = "Atum Grelhado";
banner[4][3] = "Aqueça uma gelha ou chapa em fogo baixo.
Numa panela média, aqueça o azeite em fogo médio,
junte a cebola, o alho e refogue até começarem a
";
function muda_foto(foto, titulo, texto)
{
var cfoto = document.getElementById("foto");
cfoto.innerHTML = "";
var txtlegenda = ""+titulo+'
'+texto +'
'; var ctexto = document.getElementById("legenda"); ctexto.innerHTML = txtlegenda; } elemento = 1; function automatico() { if(elemento >= banner.length) { elemento = 1; } muda_foto(banner[elemento][1], banner[elemento][2], banner[elemento][3]); elemento++; } intervalo = setInterval("automatico()", 4000);