How to re-enable the text-selection on IE, Opera & Webkit?
I disabled it like that:
$(this).mousedown(function(){return true;}); //Opera, webkit
$(this).bind('selectstart',function(){return true;}); //IE
(with firefox, I can easily re-enable it with $(this).css('MozUserSelect','text')
;