/**
 * jQuery.fadeRotate - sequential element fade rotator using jQuery (minified)
 * Copyright (c) 2011 Max Shearer - maxshearer(at)gmail(dot)com | http://shearer.co
 * Licensed under GPL
 * Date: 07/28/2011
 * @author Max Shearer
 * @version 1.0.0
 *
 */
(function(a){a.fn.fadeRotate=function(b){var c={timeout:5e3};var b=a.extend(c,b);var d=b;var e=this;var f=e.length;var g=0;var h=e.first();var i=h;h.fadeIn();var j=function(){if(g>=f-1){g=0;i.fadeOut(function(){i=e.first();i.fadeIn(function(){k()})})}else{i.fadeOut(function(){i.next().fadeIn(function(){i=i.next();g++;k()})})}};var k=function(){setTimeout(j,d.timeout)};k()}})(jQuery)
