// JavaScript Document

    (function($) {
 
   $.fn.faq = function(settings) {

     this.each(function() {	
		o = $(this).attr('id');
		
		$('#' + o + ' li div.answer').hide();
		
		$('#' + o + ' li h3.question').bind("click", function(){
			var item = $(this).parents().children("div.answer");
			$('#' + o + ' li div.answer').not(item).slideUp('fast');
			item.slideToggle("fast");
			// alert($(this).parents().children("p.answer").html());
		});		  
     });
 
     return this;
 
   };
 
 })(jQuery);
