/*!
* noSelect jQuery Plugin v1.0.2
* @link http://mths.be/noselect
* @author Mathias Bynens <http://mathiasbynens.be/>
*/
jQuery.fn.noSelect=function(){var a='none';return this.bind('selectstart dragstart mousedown',function(){return false}).css({MozUserSelect:a,WebkitUserSelect:a,userSelect:a})};
