$(document).ready( function(){
    $("div#faqs ul li a").click(function(){
        $(this).next().toggle();
        return false;
    });
});