ASP Sports Scores Ticker horizontal scroller

Trying to get some sort of javascript integrated into my Do While loop that will allow the results to display in a horizontal non stop scroll

here is my asp code

<%
Function displayScores(startDay,endDay)
articleSQL="SELECT * FROM xlaANMarticles INNER JOIN xlaANMiArticlesZones ON xlaANMarticles.articleid = xlaANMiArticlesZones.articleid WHERE (xlaANMiArticlesZones.zoneid = 22)AND (xlaANMarticles.lastupdate2 < DATEADD(d, " & startDay & ", GETDATE())) AND (xlaANMarticles.lastupdate2 > DATEADD(d, " & endDay & “, GETDATE())) AND (xlaANMarticles.headline LIKE ‘%|%’) ORDER BY xlaANMarticles.headline”
Set articleResult = Server.CreateObject(“ADODB.Recordset”)
articleResult.Open articleSQL,HeaderDB,3,3
%>

<%
If NOT articleResult.EOF Then
Do While NOT articleResult.EOF %>

	    &lt;strong style="font-size:120%;"&gt;&lt;a href="/newsmanager/templates/localnews_story.asp?z=&lt;%=trim(articleResult("description"))%&gt;&a=&lt;%=articleResult("articleid")%&gt;"&gt;&lt;%=Right(articleResult("headline"),Len(articleResult("headline")) - (InStr(articleResult("headline"),"|")))%&gt;&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;
	 
    &lt;% last_sport_cat = sport_cat 
    articleResult.MoveNext 
  Loop 
 End If

End Function %>