jQuery.fn.wrapOff = function(){
	this.each(function(){
		var node = this;
		$(node).attr("id", "post-data");
	});
}

jQuery.fn.wrapOn = function(){
	this.each(function(){
		var node = this;
		$(node).attr("id", "post-data-w");
	});
}

