(function($){if($.browser.mozilla){$.fn.disableTextSelect=function(){return this.each(function(){$(this).css({'MozUserSelect':'none'})})};$.fn.enableTextSelect=function(){return this.each(function(){$(this).css({'MozUserSelect':''})})}}else if($.browser.msie){$.fn.disableTextSelect=function(){return this.each(function(){$(this).bind('selectstart',function(){return false})})};$.fn.enableTextSelect=function(){return this.each(function(){$(this).unbind('selectstart')})}}else{$.fn.disableTextSelect=function(){return this.each(function(){$(this).mousedown(function(){return false})})};$.fn.enableTextSelect=function(){return this.each(function(){$(this).mousedown(function(){return true})})}}})(jQuery);

