$(document).ready(function() {
    $(".content-para").each(function() {
        $(this).hide();
        $(this).prev().children("a").click(function(){
            $(this).parent("h2").next().toggle("fast");
        }); 
    })
})
