var scroller,CollectionScroller=new Class({initialize:function(){if(!$("scroller"))return false;this.wrap=$("scroller");this.start()},start:function(){scroller=new Scroller("scroller");scroller.show();scroller.populate();scroller.direction="left";scroller.play();scroller.wrapper.addEvents({mouseover:function(){scroller.stop()},mouseout:function(){scroller.resume()}});this.addBehavior()},addBehavior:function(){var a=this;this.wrap.addEvents({"mouseover:relay(a)":function(){a.switchView(this.getProperty("rel"),
"show");a.switchView("startMsg","hidden")},"mouseout:relay(a)":function(){a.switchView(this.getProperty("rel"),"hidden");a.switchView("startMsg","show")}})},switchView:function(a,b){$(a).setProperty("class",b)}});

