$(function(){ 
  $(".faq li").click( function() { 
   $(".faq li").children("ul").hide();
   $(this).children("ul").fadeIn("slow");
  });
});

