$(document).ready(function() {
    $("div.event").each(function() {
        if ($(this).children("div.body").children("p.bodytext").attr("class")) {
            var sText = $(this).children("h2").text();
            $(this).children("h2").html('<a href="#">'+sText+'</a>');
            
            $(this).children("h2").children("a").click(function() {
                $(this).parent().parent().children("div.body").slideToggle("fast");
                return false;
            });
        }
    });
    
    $("div.hidden_content h3").click(function() {
        $(this).parent().children("div").slideToggle("fast");
        $(this).toggleClass("active");
        return false;
    });
});