<!--

function stopg_scroll() {
 if($timerg_scroll) {
  window.clearTimeout($timerg_scroll);
  $timerg_scroll=null;
 }
}

function giu_scroll() {
 if(parseInt(document.getElementById($ids[3]).style.top)<(document.getElementById($ids[2]).offsetHeight+document.getElementById($ids[3]).offsetHeight+$offSet)) {
  document.getElementById($ids[3]).style.top=(parseInt(document.getElementById($ids[3]).style.top)+$offSet)+"px";
 } else {
  document.getElementById($ids[3]).style.top=(document.getElementById($ids[2]).offsetHeight+$offSet)+"px";
 }
 $timerg_scroll=window.setTimeout("giu_scroll();", 100);
}

function play_scroll() {
if($doAnimation == 1){
 if(!$timer_scroll) $timer_scroll=window.setTimeout("news_scroll();", 100);
 }
}

function stop_scroll() {
if($doAnimation == 1)
 if($timer_scroll) {
  window.clearTimeout($timer_scroll);
  $timer_scroll=null;
 }
}

function news_scroll() {
 if(parseInt(document.getElementById($ids[3]).style.top)>-(document.getElementById($ids[3]).offsetHeight)) {
  document.getElementById($ids[3]).style.top=(parseInt(document.getElementById($ids[3]).style.top)-$offSet)+"px";
 } else {
  document.getElementById($ids[3]).style.top=(document.getElementById($ids[2]).offsetHeight)+"px";
 }
 $timer_scroll=window.setTimeout("news_scroll();", 100);
}

function avvia_news() {
 document.getElementById($ids[3]).style.left="0px";
 document.getElementById($ids[3]).style.top="0px";
 document.getElementById($ids[3]).style.visibility="visible";
 news_scroll();
}


var $ids=new Array();
 $ids[0]="containernp";
 $ids[1]="container_pan";
 $ids[2]="container_news";
 $ids[3]="container_scroll";

var $altezza=430;
var $offSet=2;
var $timer_scroll=null;
var $timerg_scroll=null;
var $doAnimation = 1;

window.onload=function() {
if($doAnimation == 1) avvia_news();
}

//-->