(function($){$.belowthefold=function(a,b){var c=$(window).height()+$(window).scrollTop();return c<=$(a).offset().top-b.threshold};$.abovethetop=function(a,b){var c=$(window).scrollTop();return c>=$(a).offset().top+$(a).height()-b.threshold};$.rightofscreen=function(a,b){var c=$(window).width()+$(window).scrollLeft();return c<=$(a).offset().left-b.threshold};$.leftofscreen=function(a,b){var c=$(window).scrollLeft();return c>=$(a).offset().left+$(a).width()-b.threshold};$.inviewport=function(a,b){return!$.rightofscreen(a,b)&&!$.leftofscreen(a,b)&&!$.belowthefold(a,b)&&!$.abovethetop(a,b)};$.extend($.expr[':'],{"below-the-fold":function(a,i,m){return $.belowthefold(a,{threshold:0})},"above-the-top":function(a,i,m){return $.abovethetop(a,{threshold:0})},"left-of-screen":function(a,i,m){return $.leftofscreen(a,{threshold:0})},"right-of-screen":function(a,i,m){return $.rightofscreen(a,{threshold:0})},"in-viewport":function(a,i,m){return $.inviewport(a,{threshold:0})}})})(jQuery);
