function NewsReel(e,b,d){this.uniqueID=e;this.activeIndex=1;this.duration=d;this.newsReel=$("#NR_"+this.uniqueID);this.totalItems=$("#NR_"+this.uniqueID+" div").length;var c=0;var a=0;this.newsReel.find("DIV").each(function(){a=Math.max($(this).outerHeight(true),a);c=Math.max($(this).outerWidth(true),c)});this.newsReel.height(a);this.newsReel.width(c);this.newsReel.find("DIV:first").addClass("lastActive");setInterval("NR_"+this.uniqueID+".display();",b)}NewsReel.prototype.display=function(){if(this.activeIndex==this.totalItems){this.activeIndex=1}else{this.activeIndex++}var a=this.newsReel.find("DIV.lastActive");var b=$("#NR_"+this.uniqueID+"_"+this.activeIndex);b.css({opacity:0}).addClass("goingActive").animate({opacity:1},this.duration,function(){b.addClass("lastActive").removeClass("goingActive");a.removeClass("lastActive")})};

