(function($)
{
	$.fn.defaultIndicator = function() {
        return this.each(function()
        {
			var el = this;
			var posTop = $(document).scrollTop() + ($(window).innerHeight() / 2) - ($(this).height() / 2);
			var posLeft = $(document).scrollLeft() + ($(window).innerWidth() / 2) - ($(this).width() / 2);
			$(el).remove().appendTo("body")
				.wrap("<div style='position:absolute;top:"+posTop+"px;left:"+posLeft+"px;width:1px;height:1px;'></div>");
		});
	};
})(jQuery);
