(function($){var d={random:false,interval:10000,startItem:0,effectSpeed:1000};$.fn.QAnim=function(no){var o={m:null};$(this).each(function(){el=$(this);s(el,no);c=el.data('qanim:o').startItem;m=$(el).children().length-1;u(el,{m:m});$(el).children(':not(:eq('+c+'))').hide();rq(el,c,true);});function s(el,no){o=$.extend({},d,o,el.data('qanim:o'),no);el.data('qanim:o',o);};function u(el,o){o=$.extend({},el.data('qanim:o'),o);el.data('qanim:o',o);};function rq(el,c,f){var o=el.data('qanim:o');var i=o.interval;var m=o.m;if(c<0||c>m){c=0;};if(o.random){var n=Math.round(Math.random()*m);}else{var n=c+1;};var fn=function(){rq(el,n,false);};if(!f){var j=$(el).children(':visible');if(!$(j).length){q(el,c);setTimeout(fn,i);}else{$(j).fadeOut(o.effectSpeed,function(){q(el,c);setTimeout(fn,i);});}}else{setTimeout(fn,i);}};function q(el,id){$(el).children(':eq('+id+')').fadeIn(el.data('qanim:o').effectSpeed);return true;};return this;};})(jQuery);
