<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

//var background = "sfondo.jpg";
	var speed = 0;
	var loopB;

	//browserName = navigator.appName;
	//browserVer = parseInt(navigator.appVersion);

	//if (browserName != "Netscape" || browserVer >= 4.5) {

	function moveback(movert,movedn,hPos,vPos,movediv) {
	 
	 /* if (arguments[5])
	    document.body.style.backgroundImage = "url(\"" + arguments[5] + "\")";
	 
	  if (arguments[6])
	    document.body.style.backgroundRepeat = arguments[6]*/
	 
	  if (!isNaN(hPos)) {
	    if ((movert!=0) && (hPos>0)) hPos=-100000
	    hPos += movert
	  } 
	  if (!isNaN(vPos)) {
	    if ((movedn!=0) && (vPos>0)) vPos=-100000
	    vPos+= movedn
	  }
	  
	  document.getElementById(movediv).style.backgroundPosition= hPos + " " + vPos
	  if (isNaN(hPos))  hPos = "\"" + hPos + "\""
	  if (isNaN(vPos)) vPos = "\"" + vPos + "\""
	  loopB = setTimeout("moveback("+movert+","+movedn+","+hPos+","+vPos+", '"+movediv+"')",speed)
	}
	 
	function stopback(){
		clearTimeout(loopB);
	}
	//}

//-->