/**
 * jQuery Duff's Device (http://mktgdept.com/jquery-duffs-device)
 * A jQuery plugin for speedy loops.
 *
 * v0.0.2 - 28 August 2009
 *
 * Copyright (c) 2009 Chad Smith (http://twitter.com/chadsmith)
 * Dual licensed under the MIT and GPL licenses.
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.opensource.org/licenses/gpl-license.php
 *
 * Use $(element).duff(function(){...}); in place of $(element).each(function(){...});
 *
 **/
;jQuery.duff=function(a,b){var c=a.length,d=c%8,e=0;if(d)do b.call(a[e],e,a[e++]);while(--d);if(d=Math.floor(c/8))do{b.call(a[e],e,a[e++]);b.call(a[e],e,a[e++]);b.call(a[e],e,a[e++]);b.call(a[e],e,a[e++]);b.call(a[e],e,a[e++]);b.call(a[e],e,a[e++]);b.call(a[e],e,a[e++]);b.call(a[e],e,a[e++])}while(--d);return a};jQuery.fn.duff=function(a){return jQuery.duff(this,a)};