jQuery.fn.extend({disableSelection : function(){ return this.each(function() {this.onselectstart = function() { return false; }; this.unselectable = "on"; jQuery(this).css('user-select', 'none'); jQuery(this).css('-o-user-select', 'none'); jQuery(this).css('-moz-user-select', 'none'); jQuery(this).css('-khtml-user-select', 'none'); jQuery(this).css('-webkit-user-select', 'none');});}}); $(document).ready(function (){ $('*').bind("contextmenu",function(e){ return false; }); $('#logo').disableSelection(); $('#flora_tl').disableSelection(); $('#flora_br').disableSelection(); $('nav').disableSelection(); $('#content').disableSelection(); $('#slider').disableSelection(); }); 
