/**
 * jQuery xml plugin - Converts XML node(s) to string
 * Dual licensed under the MIT  and GPL
 * Copyright (c) 2009 Radim Svoboda 
 * @version 1.0.0
 */
jQuery.fn.xml=function(all){var s="";if(this.length)
(((typeof all!='undefined')&&all)?this:jQuery(this[0]).contents()).each(function(){s+=window.ActiveXObject?this.xml:(new XMLSerializer()).serializeToString(this);});return s;};