// JavaScript Document
/*
var i = 10;
var timerId = document.getElementById('scrollThis').style.top = 0;

function stop() {
	if(timerId) {
		window.clearInterval(timerId);
		timerId = null;
	} else {
		return false;
	}
}

function start() {
	if(!timerId) {
		timerId = window.setInterval(scrollIt , 100);
	} else {
		return false;
	}
}

function scrollIt() {
	document.getElementById('scrollThis').style.top = parseInt(document.getElementById('scrollThis').style.top)-2;
	if(parseInt(document.getElementById('scrollThis').style.top) < -246) {
		document.getElementById('scrollThis').style.top = 0 + 123;
	}

}

start();
*/
