jQuery.fn.wrapInner = function(html){
	return this.each(function(){
		jQuery(html).append(this.childNodes).appendTo(this);
	});
};
