(function(){
/*
 * Snippets for jQuery
 *
 */
	(
		function($)
		{
			$(document).ready(
				function()
				{
					/*
					OUTER HTML
					*/
					jQuery.fn.htmlOuter = function() {return $('<div>').append( this.eq(0).clone() ).html();};
				}
			);
		}
	)(jQuery);
})();