  $(document).ready(function(){
    jQuery('div.faq').click(function(){
     if($('div#'+this.id+' div.raspuns').is(':hidden')){
		$('div.faq div.raspuns').hide(500);
		$('div#'+this.id+' div.raspuns').show(500);
	  }
	  $(document.getElementById(this.id)).ready(function(){
        jQuery('div.faq div.intrebare').click(function(){
		  id=this.parentNode.parentNode.parentNode.id;
	      if(id!='undefined')$('div#'+id+' div.raspuns').hide(500);
	    });
      });
	});
  });