Syn.News=Syn.Component.extend({init:function(config){this._super(config);for(var i=0;this.uniqueElmt('mainstory'+i).length;i++){this.uniqueElmt('mainstory'+i).connect('mouseenter',this,'showThumb',[i])}for(var i=0;this.uniqueElmt('photo_link'+i).length;i++){this.uniqueElmt('photo_link'+i).fixPngBackground();this.uniqueElmt('photo_link'+i).connect('mouseenter',this,'showArrow',[i]);this.uniqueElmt('photo_link'+i).connect('click',this,'changeStory',[i])}},showThumb:function(index){for(var i=0;this.uniqueElmt('image'+i).length;i++){i==index?this.uniqueElmt('image'+i).show():this.uniqueElmt('image'+i).hide();i==index?this.uniqueElmt('mainstory'+i).addClass('headline_hover'):this.uniqueElmt('mainstory'+i).removeClass('headline_hover')}},showArrow:function(index){selectedIndex=this.uniqueElmt().attr('selected_index');for(var i=0;this.uniqueElmt('photo_link'+i).length;i++){this.uniqueElmt('photo_link'+i).removeClass('on');this.uniqueElmt('photo_link'+i)[0].style.backgroundImage='';this.uniqueElmt('photo_link'+i)[0].style.filter='';}this.uniqueElmt('photo_link'+index).addClass('on');this.uniqueElmt('photo_link'+index).fixPngBackground();if(selectedIndex!=index){this.uniqueElmt('photo_link'+index).connect('mouseleave',this,'hideArrow',[index])}},hideArrow:function(index){this.uniqueElmt('photo_link'+index).removeClass('on');this.uniqueElmt('photo_link'+index)[0].style.backgroundImage='';this.uniqueElmt('photo_link'+index)[0].style.filter='';selectedIndex=this.uniqueElmt().attr('selected_index');this.uniqueElmt('photo_link'+selectedIndex).addClass('on');this.uniqueElmt('photo_link'+selectedIndex).fixPngBackground()},changeStory:function(index){this.submit({'selected_story_index':index})}});