String.prototype.xml =function(n) {
	if (this.match('<'+n+'>(.+?)</'+n+'>')) return RegExp.$1;
	else return '';
};

jQuery.cache = {};

jQuery.fn.extend({
  create_comment:function(a) {
  	this.each(function() {
  		$(this).click(function(e){ e.preventDefault();$(this).next().toggle('slow');})
  	});
  	return this;
  }

});

//////////////////////////////////////////////////////////////////////////////////////////////


