/*!
* noSelect jQuery Plugin v1.0
* @link http://github.com/mathiasbynens/noSelect-jQuery-Plugin
* @author Mathias Bynens <http://mathiasbynens.be/>
*/
jQuery.fn.noSelect=function(){function a(){return false}return this.each(function(){var b='none';this.onselectstart=this.ondragstart=a;jQuery(this).mousedown(a).css({MozUserSelect:b,WebkitUserSelect:b,userSelect:b})})};
