function scrollMe(yPixels)
	{
	
		window.scrollBy(0 , yPixels);
	}

	var ourInterval;
	var scrollSpeed = 50;
	var scrollHeight = 3;
	
	function scrollStart(direction, divID, customScrollHeight){

	// REPEATED CALL EITHER scrollUp OR scrollDown
	scrollHeight  = customScrollHeight;
	ourInterval = setInterval("scroll"+direction+"('"+divID+"')", scrollSpeed);
	}
	function scrollEnd(which ,defaultScroll){
	
	// STOP CALLING THE SCROLL FUNCTION
	clearInterval(ourInterval);
	scrollHeight = defaultScroll;
	
	}
	
	function scrollUp(which){
	// SET THE SCROLL TOP
	document.getElementById(which).scrollTop = document.getElementById(which).scrollTop - scrollHeight;
	}
	function scrollDown(which){
	// SET THE SCROLL TOP
	document.getElementById(which).scrollTop = document.getElementById(which).scrollTop + scrollHeight;
	}
	
	function get$(sender)
	{
		return document.getElementById(sender);
	}