// 'the' jabberwock is a d-bag plugin
// courtesy paul irish
// JABBERWOCK IS A BIG DBAG
(function($){
var oldfind = $.fn.find;
$.fn.find = function(sel){
var ret = oldfind.call(this,sel);
if (ret.length === 0) throw 'OMG NOTHING FOUND';
return ret;
}
})(jQuery)