That's a non-standard version of crawler used on that page. It goes up and down, not sideways. Pretty cute.
Anyways, by uncommenting the DOCTYPE you are invoking standards, which somehow robs the crawler of its height.
Looks like you can restore that by adding it to the init:
Code:
<script type="text/javascript">
marqueeInit({
uniqueid: 'mycrawler',
addDelay: 30,
style: {'height': '270px'},
inc: 3, //speed - pixel increment for each iteration of this marquee's movement
mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
direction: 'top',
random: true,
stopped: false,
moveatleast: 3,
neutral: 150,
savedirection: true
});
</script>
Bookmarks