<html>
<head>
<style>
P
{
margin:0px;
padding:0px
}
body
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body>!Reposting::since my reply is&nbsp;delayed/?not delivered!<BR>
&gt; I said I did not test it on other <BR>&gt; OS's, just Mac. <BR>
&nbsp;<BR>
I totally forgot about that! :')<BR>
<BR>&gt; It may be acting exactly as it should, but I would like to see image <BR>&gt; 1 immediately follow image 9. Any ideas as to how to make that happen?<BR>
<BR>In that case you should throw away the "marquee" tag <BR>
turn to javascript based solution. Seems to me that the proposed Roger Roelofs <BR>
and Chris Heilmann&nbsp;approach should work in most browsers even if<BR>
heavily&nbsp;<FONT>CSS dependable: why don't you try it?</FONT><BR>
&nbsp;<BR>
<STRONG></STRONG>------&nbsp; html&nbsp; ----------<BR>
&lt;div id="scroller"&gt;&nbsp;&nbsp; <BR>
&lt;ul&gt;&nbsp;<BR>
&lt;li&gt;&lt;img src="images/1.jpg"&gt;&lt;/li&gt;&nbsp;<BR>
&lt;li&gt;&lt;img src="images/1.jpg"&gt;&lt;/li&gt;&nbsp;<BR>
&lt;li&gt;&lt;img src="images/1.jpg"&gt;&lt;/li&gt;<BR>
&nbsp;...&nbsp;&nbsp; <BR>
&lt;/ul&gt;<BR>
&lt;/div&gt;<BR>
-----&nbsp; css ----------<BR>
#scroller {<BR>
&nbsp;&nbsp; height: 84px;<BR>
&nbsp;&nbsp; width: 300px;<BR>
&nbsp;&nbsp; overflow: hidden<BR>
}<BR>
#scroller ul {<BR>
&nbsp;&nbsp; display: block;<BR>
&nbsp;&nbsp; width: 500px<BR>
}<BR>
#scroller li {<BR>
&nbsp;&nbsp; display: inline<BR>
}<BR>
-------&nbsp; js&nbsp; --------<BR>
var marginLeft = 0;<BR>
function moveIt() {<BR>
&nbsp;&nbsp; var el = document.getElementById("scroller");<BR>
&nbsp;&nbsp; el = el.getElementsByTagName("UL")[0];<BR>
&nbsp;&nbsp; if (el) {<BR>
&nbsp;&nbsp;&nbsp;&nbsp; <FONT>el.style.<FONT>marginLeft</FONT></FONT> = marginLeft + "px";<BR>
&nbsp;&nbsp;&nbsp;&nbsp; marginLeft -= 10;<BR>
&nbsp;&nbsp;&nbsp;&nbsp; if ( marginLeft &lt; -500 ) maraginLeft = 0;<BR>
&nbsp;&nbsp; }}<BR>
window.onload = function() {<BR>
&nbsp;&nbsp; var intervalID = window.setInterval(moveIt, 50);<BR>
}<BR><BR><BR>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Troy&nbsp;III<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;progressive&nbsp;art&nbsp;enterprise<BR>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<BR><BR><BR>

<HR id=stopSpelling>
<BR><br /><hr />With MSN Spaces email straight to your blog. Upload jokes, photos and more. It's free! <a href='http://clk.atdmt.com/MSN/go/msnnksac0030000001msn/direct/01/?href=http://www.imagine-msn.com/spaces' target='_new'>It's free!</a></body>
</html>