$(document).ready(function(){
	$("ul.faq p").hide();
	$("ul.faq a strong").click(function(){
		$("ul.faq p:visible").slideUp("fast");
		$(this).parent().next().slideDown("fast");
		return false;
	});
});

$(document).ready(function() {

    // hide all detail areas in the "Friend" pods except for the first one
    $("span.friendDetails:not(:first)").hide();

    //when the "Add a Friend" link is clicked...
    $("legend.friendlegend").click(function() {

        //... the panel opens. (Click it again to close it)...
        $(this).next("span.friendDetails").slideToggle("slow");
        //... Toggles the arrow image when open and closed...		
        $(this).toggleClass("active");

        //do not follow the link in the href of the clicked a tag.
        return false;
    });
});
