// JavaScript Document

$(function(){
$("#sites_do_grupo ul li h4").click(function(){
$(this).parent().find("ul").toggle("slow");
});
});