// JavaScript Document
(function(j){  
	j.fn.noSelect = function() {
		 return this.attr('unselectable', 'on')
           .css('-moz-user-select', 'none')
           .each(function() { 
               this.onselectstart = function() { return false; };
            });
	};  
})(jQuery);
