//===============================================================================
var curImage = 0;
//===============================================================================
function obj(o)
{
   return window.document.getElementById(o);
}
//===============================================================================
function rnd(mi, ma)
{
   return Math.floor(Math.random() * (ma - mi + 1)) + mi;
}
//===============================================================================
function selectRandomImage()
{
   var nextImage = rnd(1, 5);
   while(nextImage == curImage)
   {
      nextImage = rnd(1, 5);
   }
   curImage = nextImage;
   obj("semanaShow").src = "imagens/semana_" + curImage + ".gif";
}
//===============================================================================
$(document).ready(function(){
   $(".accordionSelector").click(function(){
      $(".accordionContent").hide();
      $("#" + $(this).attr("target_id")).slideDown();
      selectRandomImage();
   });
   $(".accordionContent").hide();
   $("#conteudo1").show();
   selectRandomImage();
});
//===============================================================================

