;(function(){
	
var $$;

$$ = jQuery.fn.debug_show = function()
{
		this.css("outline", "1px dotted #0033FF" );
		this.css("min-width", "10px");
		this.css("min-height", "10px");
};

$$ = jQuery.fn.debug_show_recursive = function()
{
		this.debug_show();
		this.children().debug_show_recursive();
};
})();