Вы можете легко создать свой собственный плагин для такой простой задачи:
(function($) {
$.fn.zippy = function(options) {
var o = $.extend({}, options, $.fn.zippy.defaults);
return this.each(function(i,el) {
var $el = $(el),
content = $el.find('p'),
title = $el.find('h2');
title.toggle(function() {
content.slideToggle(o.duration, o.easing, o.callback);
});
});
};
$.fn.zippy.defaults = {
easing : 'swing',
duration : 500,
callback : function(){}
};
})(jQuery)