var obj_marquee={obj_data:{},init:function(c){var b=document.getElementById(c.str_id);var a=b.id;this.d=new Date();this.obj_data[a]={bit_pause:false,elm_scroll:b,int_start:c.int_height,int_stop:-b.offsetHeight,int_index:c.int_height,var_speed:c.var_speed,var_prevMS:this.d.getTime()};b.style.position="absolute";b.style.top=this.obj_data[a].int_index+"px";b.onmouseover=function(d){obj_marquee.stop(a)};b.onmouseout=function(d){obj_marquee.start(a)};setInterval('obj_marquee.execScroll("'+a+'");',c.int_interval)},execScroll:function(b){this.d=new Date();var a=this.d.getTime();var d=a-this.obj_data[b].var_prevMS;var c=(d/25)*this.obj_data[b].var_speed;this.obj_data[b].var_prevMS=a;if(!this.obj_data[b].bit_pause){this.obj_data[b].int_index-=c;if(this.obj_data[b].int_index<this.obj_data[b].int_stop){this.obj_data[b].int_index=this.obj_data[b].int_start}this.obj_data[b].elm_scroll.style.top=this.obj_data[b].int_index+"px"}},stop:function(a){obj_marquee.obj_data[a].bit_pause=true},start:function(a){obj_marquee.obj_data[a].bit_pause=false}};