;(function($) {

	$.peekaboolist = {
	}

	$.fn.extend({
	
		peekaboolist: function(options) {
		
			var options = $.extend($.peekaboolist, options);
		
		
	        return this.each(function() {
				var obj = $(this);
	
				obj.find('p').hide();
				
				obj.find('li > b').click(function() {
					$(this).parent().find('p').slideToggle('normal');
					if ($(this).parent().hasClass('expanded')) {
						$(this).parent().removeClass('expanded');
					} else {
						$(this).parent().addClass('expanded');
					}
	
				});
				
			
	        }); // end return
		} // end function
    }); // end extend
})(jQuery);

