<!--
// JavaScript Document
<!--


// ADAM'S MODIFIED JS SCROLLER - 28-05-2008
// ------------------------------------------------------------------>

// GET WINDOW HEIGHT
// -------------------------------------------------------->
function getHeight() {
	var myHeight = 0;
	if( typeof( window.innerHeight ) == 'number' ) {
	  //Non-IE
	  myHeight = window.innerHeight;
	} else if( document.documentElement && document.documentElement.clientHeight ) {
	  // IE 6+ in 'standards compliant mode'
	  myHeight = document.documentElement.clientHeight;
	} else if( document.body && document.body.clientHeight ) {
	  //IE 4 compatible
	  myHeight = document.body.clientHeight;
	}
	return myHeight;
  }
   
	var documentHeight = getHeight();
	//document.write(documentHeight * 2);
	var tScroll;
	var curPos = 0;

// RUN TIMER
// -------------------------------------------------------->
function runTimer()
	{
	curPos += 1;
	window.scroll(0,curPos);
	tScroll = setTimeout("runTimer();", 80);
	//if(curPos > 220) { curPos = 0; } // MY ADDITION
	if(curPos > (documentHeight * 2)) { curPos = 0; } // HEIGHT FUNCTION
	}

window.onload = runTimer()
//-->