$(document).ready(function(){

//Mostra/esconde descrição
  $('div.form').hide()
  $('div.identar').hide()
  $('div.tit_esconde_mostra').click(function(){
    $(this).next().slideToggle()
	if ($(this).children(0).attr("src") == "img/pasta_fechada.gif"){
	  $(this).children(0).attr("src", "img/pasta_aberta.gif")
	} else {
	  $(this).children(0).attr("src", "img/pasta_fechada.gif")
	}
    return false
  })

});
