var ClearSkype = new Class({
	
	erase : function(n) {
		
		(function($) {
			if(!$('#skype_plugin_object').length) { 
				if (n < 10) {
					setTimeout("oClearSkype.erase(" + (n+1) + ")",500);
				} else {
					return;	
				}
			}
			
			$('#skype_plugin_object').remove();
			
			$('span.skype_pnh_print_container').each(function() {
				var originalPhone_ = $(this).text();
				var originalHTML_ = $(this).parent().html();
				$(originalHTML_).find('span.skype_pnh_print_container').replaceWith(originalPhone_);
				$(originalHTML_).remove('span.skype_pnh_container');
				$(this).parent().html($(originalHTML_));
			});

		})(jQuery);
	}
	
});
