// JavaScript Document
$(document).ready(function(){
  $(".cf_another").next("div").hide();

  $("p.cf_another").click(function(){
		$(this).next("div").slideToggle("slow");
		$(this).prev("div").slideToggle("slow");
		$(this).toggleClass("active"); return false;
    });
});

