<!--
var news_delta;
var news_scrolling;
news_delta = 0;
news_scrolling = false;
var first_start=true;
var originTop=0;


function news_scroll() {

  var top;
  var height;

  if (first_start) {
	originTop=parseInt(div_news.style.top);
	first_start=false;
  }
  if (news_scrolling) {
    top    = parseInt(div_news.style.top);
    //height = parseInt(div_news.style.height);
    height = parseInt(div_news.style.pixelHeight);
    height = parseInt(outerDiv.offsetHeight);
    //alert(height);
    if((top <= 0 && top + height >= 250 && news_delta < 0) 
	|| (news_delta > 0 && top < 0)){
      div_news.style.top = top + news_delta;
    }
    setTimeout("news_scroll()", 30);
  }
}

function move2Top() {
	div_news.style.top=originTop;
}
//-->