/*
	Unwrap v1.2 (December 11, 2009) plugin for jQuery
	Copyright (c) 2009 Todd Northrop
	http://www.speednet.biz/
	Licensed under GPL 3, see  <http://www.gnu.org/licenses/>
*/
jQuery.fn.unwrap=function(){return this.parent(":not(body)").each(function(){var a=jQuery(this);a.replaceWith(a.contents())}).end()};jQuery.fn.unwrapInner=function(){return this.each(function(){var a=jQuery(this);a.replaceWith(a.contents())}).end()};