<!DOCTYPE html>

<html>

<body bgcolor="yellow">


<h1>My First Heading</h1>


<p>My first paragraph.</p>


<!-- Taken from Quackit.com!-->


<script type="text/javascript" src="./xbMarquee.js"></script>

<script type="text/javascript">

<!--

//set the marquee parameters

function init() { ltr_marquee.start(); }

var ltr_marquee_Text = 'JavaScript scrolling text';

var ltr_marquee_Direction = 'right';

var ltr_marquee_Contents='<span style="font-family:Comic Sans MS;font-size:12pt;white-space:nowrap;">' + ltr_marquee_Text + '</span>';

ltr_marquee = new xbMarquee('ltr_marquee', '19px', '90%', 6, 100, ltr_marquee_Direction, 'scroll', ltr_marquee_Contents);

window.setTimeout( init, 200);

-->

</script>



</body>

</html>