$(document).ready(function(){

    $(".toggler").find("span.togtri").text("► ");
		    
    $(".toggler").click(function(){
      $(this).next().slideToggle("fast");
      
      if ($(this).find("span.togtri").text() == "► ") {
        $(this).find("span.togtri").text("▼ ");
      } else {
        $(this).find("span.togtri").text("► ");
      }
      
      return false;
  }).next().hide()

});

