var info = new Array()
//info[ 0 ] = "<b>Teatro de Revista</b>: \"Tal Tá a Moenga\" organizado por S.F.U.M. “Os Amarelos”<br>15 de Fevereiro, pelas 21:30 no Cine-Teatro Caridade"
//info[ 1 ] = "<b>Noite de Fados</b> organizado por A.R.P.I.C.M.<br>22 de Fevereiro, pelas 21:30 no Cine-Teatro Caridade"
//info[ 1 ] = "<b>Festas de S. Sebastião</b><br>18 a 20 de Janeiro, Safara"
/*info[ 0 ] = "<b>Cine-Teatro Caridade</b><br>ESTE PAÍS NÃO É PARA VELHOS<br>16, 17 e 18 de Maio -  21:45" +
            "<br>18 de Maio – 16:00<br><br>PONTO MIRA<br>23, 24 e 25 de Maio -  21:45" +
            "<br>25 de Maio – 16:00<br><br>HORTON E O MUNDO DOS QUEM<br>30 e 31 de Maio -  21:45"*/

function colocaMiniaturas( galeria, totalImagens ){
   for ( i = 1; i <= totalImagens; i++ ){
      document.writeln( "<a href=#><img border=0 height=53 style='border:1px solid #002c11' onclick='document.normal.src=\""+galeria+i+".jpg\"' src='"+galeria+i+"_mini.jpg'></a>&nbsp;" )
   }
}

function mudaGaleria( nome, indice ){
   document.location = nome + "?indice=" + indice
}

function mostraTitulo( nome ){
   img = "<img src='titulos/" + nome + "'>"
   document.writeln( "<table border=0 width=100% cellpadding=0 cellspacing=0><tr align=right><td>" + img + "</td></tr></table>" )
}

function mostraSeparador(){
   document.writeln( "<table border=0 width=100% cellspacing=0 cellpadding=0 height=11><tr><td height=11 nowrap background='images/dots.gif'><p></td></tr></table>" )
}

function colocaScroller(){
   document.writeln( '<marquee onmouseover="this.stop()" onmouseout="this.start()" height="100" scrolldelay="250" direction=up bgcolor1="fafabc">' )
   for ( i = 0; i < info.length; ++i )
      document.writeln( "<p>" + info[ i ] )
   document.writeln( '</marquee>' )
}