var newslider={ids:[],titles:[],timer:null,time:6000,cur:0,ouver:false,nunlock:false,container:"#anim",toticker:0,init:function(){if($(newslider.container+" .news").length>1){var b=0,a=$(newslider.container+" .news").length-1;$(newslider.container+" .news").each(function(){newslider.ids.push($(this).attr("id"));newslider.titles.push($(this).attr("alt"));if(b!=0){$("#"+$(this).attr("id")).hide().css({opacity:0})}b++});newslider.nav();newslider.ticker(0,0);window.setTimeout("newslider.auto();",newslider.time)}else{if($(newslider.container+" .news").length<1){newslider.xhide()}else{if($(newslider.container+" .news").length==1){newslider.titles.push($(newslider.container+" .news").attr("alt"));newslider.ticker(0,0)}}}},nav:function(){for(var a in newslider.ids){$(newslider.container+" .al").append('<div class="but" id="but_'+newslider.ids[a]+'" title="'+newslider.titles[a]+'"><div>'+a+"</div></div>")}$("#but_"+newslider.ids[0]).css({width:14,"background-color":"#3c3c3c",cursor:"default"});$(newslider.container+" .but").click(function(){newslider.moveto($(this).find("div").html())});$(newslider.container+" .news").mouseover(function(){newslider.over=true;$(newslider.container+" .clock").stop().show().animate({opacity:1},200,"swing")});$(newslider.container+" .news").mouseout(function(){newslider.over=false;if(newslider.nunlock){newslider.nunlock=false;newslider.auto()}$(newslider.container+" .clock").stop().animate({opacity:0},200,"swing")})},moveto:function(a){if(a==newslider.cur){return}newslider.xswitch(a,newslider.cur)},auto:function(){var a=newslider.cur+1,b=newslider.cur;if(a>=newslider.ids.length){a=0}newslider.xswitch(a,b)},xswitch:function(b,a){if((b<0)||b>=newslider.ids.length||b==newslider.cur){return}if(!newslider.over){window.clearTimeout(newslider.timer);$("#"+newslider.ids[a]).animate({opacity:0},600,"swing",function(){$(this).hide()});$("#"+newslider.ids[b]).show().animate({opacity:1},600,"swing");$("#but_"+newslider.ids[a]).css({"background-color":"#000000",cursor:"pointer"}).animate({width:7},600,"swing");$("#but_"+newslider.ids[b]).css({"background-color":"#3c3c3c",cursor:"default"}).animate({width:14},600,"swing");$(newslider.container+" .ntitle").animate({opacity:0},600,"swing",function(){$(this).html("").css({opacity:1});newslider.ticker(0,b)});newslider.cur=b*1;newslider.timer=window.setTimeout("newslider.auto();",newslider.time)}else{newslider.nunlock=true}},ticker:function(c,b){if((c>newslider.titles[b].length)||(newslider.titles[b].length==0)){return}if(newslider.toticker>0){var a=Math.round(newslider.toticker/newslider.titles[b].length)}else{var a=30}ctext=newslider.titles[b].substring(0,c)+(c%2?"/":"\\");$(newslider.container+" .ntitle").html(ctext);if(c==newslider.titles[b].length){$(newslider.container+" .ntitle").html(newslider.titles[b])}else{window.setTimeout("newslider.ticker("+(c+1)+","+b+");",a)}},xhide:function(){$(newslider.container).html("").hide()}};
