
		sSpeed = 2;
		sWidth = 400;
		sHeight = 40;
		sDir = 'up';
		sInit = 0;


		scrollInterval = window.setInterval('doScroll()',100);


		function doScroll() {

			// objekte
			ObjxScrollerContainer = document.getElementById('xScrollerContainer');
			ObjxScroller = document.getElementById('xScroller');

			if(sDir == 'up') {
				if(sInit == 0) { a = sHeight; sInit = 1; };
				a = a-sSpeed;
				if(a < -ObjxScroller.offsetHeight) { a = sHeight; }
				ObjxScroller.style.top = a+'px';
			}

			if(sDir == 'down') {
				if(sInit == 0) { a = -ObjxScroller.offsetHeight; sInit = 1; };
				a = a+sSpeed;
				if(a > sHeight) { a = -ObjxScroller.offsetHeight; }
				ObjxScroller.style.top = a+'px';
			}

			if(sDir == 'left') {
				if(sInit == 0) { a = sWidth; sInit = 1; };
				a = a-sSpeed;
				if(a < -ObjxScroller.offsetWidth) { a = sWidth; }
				ObjxScroller.style.left = a+'px';
			}

			if(sDir == 'right') {
				if(sInit == 0) { a = -ObjxScroller.offsetWidth; sInit = 1; };
				a = a+sSpeed;
				if(a > sWidth) { a = -ObjxScroller.offsetWidth; }
				ObjxScroller.style.left = a+'px';
			}

		};


		// Scrollvorgang unterbrechen
		function pauseScroll() {
			window.clearInterval(scrollInterval);
		};


		// Scrollvorgang fortsetzen
		function continueScroll() {
			scrollInterval = window.setInterval('doScroll()',100);
		};


		document.write('<div id=\"xScrollerContainer\" style=\"position:relative; border: 0px solid #; width:400px; height:40px; overflow:hidden;\" onmouseover=\"pauseScroll();\" onmouseout=\"continueScroll();\"><div id=\"xScroller\" style=\"padding: 1px; position:absolute; height:; width:400px; top:40px; left:0;\"><table border=0 cellspacing=0 cellpadding=0 style=\"height:; width:400px;\"><tr><td valign=\"top\"><div style=\"width:400px; height:; overflow:hidden; margin-bottom:20px;\"><a href=\"http://brimato.de/referenzen.html\"><b>Referenzen</b>:<br><br><br />  <br />  Allgemeines Krankenhaus Wien,<br><br><br />  <br />  Klinikum Magdeburg,<br><br><br />  <br />  ITH GmbH, Entwicklung und Prototypenbau,<br><br><br />  <br />  Dürkopp Adler AG,<br><br><br />  <br />  Llombart Handels- und Treuhandelsges. mbH,<br><br><br />  <br />  Orange X-PRESS Handels- und Vertriebsges. mbH,<br><br><br />  <br />  Holzmann,<br><br><br />  <br />  Pfaff Industriemaschinen Vertriebs-GmbH,<br><br><br />  <br />  Honeywell,<br><br><br />  <br />  necktie-tec,<br><br><br />  <br />  Stierlen GmbH.<br><br></a></div></td></tr></table></div></div>')

doScroll();
