function contentScroll(scrolldivarg, dir)
			{
				scrolldiv = scrolldivarg;
				contentScrolling = window.setInterval("scrolling()", 20);
				switch (dir)
				{
					case "up": y = 1; break;
					case "down": y = -1; break;
					case "none": y = 0; window.clearInterval(contentScrolling); break;
				}
			}

			function scrolling()
			{
				document.getElementById('content1inside').style.top = parseInt(document.getElementById(scrolldiv).style.top) + y + "px";
			}
