<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head><title>Scrollbarer Layer</title><meta name="AUTHOR" content="con-f-use@gmx.net" /><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript"><!--
//coded by con-f-use@gmx.net - be fair and do not remove this
function scrollDiv(strId,intSpd) {
if ( objScrll=document.getElementById(strId) ) {
var left = parseInt(objScrll.style.left);
if ( (intSpd>0) ? (left<0) : (left>parseInt(objScrll.parentNode.style.width)-objScrll.offsetWidth) )
objScrll.style.left = (left + intSpd) +"px";
eval( 'tvar' + strId +'= setTimeout("scrollDiv(\''+ strId +'\',' + intSpd + ')",50)' );
if (objSelf=scrollDiv.arguments[2])
objSelf.onmouseup = objSelf.onmouseout = new Function('fx','clearTimeout(tvar' + strId + ')');
}
}
//--></script>
</head><body><div>
<div style="position:relative; overflow:hidden; height:20px; width:128px;">
<div id="content" style="position: absolute; width: 640px; padding: 5px; left: 0; top: 0;">
Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla Bla.
</div>
</div>
<a href="#" onclick="return false" onmousedown="scrollDiv('content',8,this)">Rechts</a><br />
<a href="#" onclick="return false" onmousedown="scrollDiv('content',-8,this)">Links</a>
</div></body></html>