$.fn.wrapInner = function(e) {
	return this.each(function(){
		var o = $(this);
		var c = o.html();
		o.empty().append($(e).append(c));
	});
}; 