// JavaScript Document

	$(function() {
		$.extend($.fn.disableTextSelect = function() {
			return this.each(function(){
				if($.browser.mozilla){//Firefox
					$(this).css('MozUserSelect','none');
					$(this).mousedown(function(){return false;});
				}else if($.browser.msie){//IE
					$(this).bind('selectstart',function(){return false;});
					$(this).mousedown(function(){return false;});
				}else{//Opera, etc.
					$(this).mousedown(function(){return false;});
				};
			});
		});
		$('.nocopy').disableTextSelect();//No text selection on elements with a class of 'noSelect'
		$(this).bind("contextmenu", function(e) {
			return false;
		});
	});

