Index: wp-admin/js/common.js
===================================================================
--- wp-admin/js/common.js	(revision 9783)
+++ wp-admin/js/common.js	(working copy)
@@ -352,38 +352,17 @@
 
 })(jQuery);
 
-
-/*
 (function($) {
-	$.fn.tTips = function() {
-
-		$('body').append('<div id="tTips"><p id="tTips_inside"></p></div>');
-		var TT = $('#tTips');
-
-		this.each(function() {
-			var el = $(this), txt;
-
-			if ( txt = el.attr('title') ) el.attr('tip', txt).removeAttr('title');
-			else return;
-			el.find('img').removeAttr('alt');
-
-			el.mouseover(function(e) {
-				txt = el.attr('tip'), o = el.offset();
-
-				clearTimeout(TT.sD);
-				TT.find('p').html(txt);
-
-				TT.css({'top': o.top - 43, 'left': o.left - 5});
-				TT.sD = setTimeout(function(){TT.fadeIn(150);}, 100);
-			});
-
-			el.mouseout(function() {
-				clearTimeout(TT.sD);
-				TT.css({display : 'none'});
-			})
-		});
+	_old_attr = $.attr;
+	$.attr = function(elem, name, value) {
+		if ( typeof value === 'string' )
+			value = $('<span>'+value+'</span>').html();
+		return _old_attr(elem, name, value);
 	}
-}(jQuery));
-*/
-
-//jQuery(function(){jQuery('#media-buttons a').tTips();});
+	_old_val = $.fn.val;
+	$.fn.val = function(value) {
+		if ( typeof value === 'string' )
+			value = $('<span>'+value+'</span>').html();
+		return _old_val.call(this, value);
+	}
+})(jQuery);
\ No newline at end of file
