window.setTimeout( "scrollerTick()",1000);
										function scrollerTick()
										{
											if( document.getElementById )
											{
												var o = document.getElementById( 'info_bar_scroller_inner2');
												if( o.style )
												{
												}
												else
												{											
													o.style=o;
												}
												scrollerPosition--;
												if( (-scrollerPosition)+20 > scrollerNum*40 )
												{
													scrollerPosition = 40;
												}
												o.style.marginTop = scrollerPosition+'px';
												window.setTimeout( "scrollerTick()",(40-scrollerPosition)%40==39?2000:100);
											}
										}