<body>
<div class="ticki"> <a id="tickerAnchor" href="#" target="_top" class="tickl"></a></div>
<script language="JavaScript" type="text/javascript">
<!--
// Ticker startup
function startTicker()
{
// Define run time values
theCurrentStory = -1;
theCurrentLength = 0;
// Locate base objects
if (document.getElementById) {
theAnchorObject = document.getElementById("tickerAnchor");
runTheTicker();
}
else {
document.write("<style>.ticki{display:none;}.ticko{border:0px; padding:0px;}</style>");
return true;
}
}
// Ticker main run loop
function runTheTicker()
{
var myTimeout;
// Go for the next story data block
if(theCurrentLength == 0)
{
theCurrentStory++;
theCurrentStory = theCurrentStory % theItemCount;
theStorySummary = theSummaries[theCurrentStory].replace(/"/g,'"');
theTargetLink = theSiteLinks[theCurrentStory];
theAnchorObject.href = theTargetLink;
thePrefix = "<span class=\"tickls\">" + theLeadString + "</span>";
}
// Stuff the current ticker text into the anchor
theAnchorObject.innerHTML = thePrefix +
theStorySummary.substring(0,theCurrentLength) + whatWidget();
// Modify the length for the substring and define the timer
if(theCurrentLength != theStorySummary.length)
{
theCurrentLength++;
myTimeout = theCharacterTimeout;
}
else
{
theCurrentLength = 0;
myTimeout = theStoryTimeout;
}
// Call up the next cycle of the ticker
setTimeout("runTheTicker()", myTimeout);
}
// Widget generator
function whatWidget()
{
if(theCurrentLength == theStorySummary.length)
{
return theWidgetNone;
}
if((theCurrentLength % 2) == 1)
{
return theWidgetOne;
}
else
{
return theWidgetTwo;
}
}
// -->
</script>
<script language="JavaScript" type="text/javascript">
<!--
var theCharacterTimeout = 50;
var theStoryTimeout = 5000;
var theWidgetOne = "_";
var theWidgetTwo = "-";
var theWidgetNone = "";
var theLeadString = "";
var theSummaries = new Array();
var theSiteLinks = new Array();
// This is where you say how many links you want....
var theItemCount = 13;
theSummaries[0] = "Welcome To <b>HOWTODOIT</b> Your One Stop Guide To <b>Myfreeforum</b>. Please Use The Search It Is There To Help You. ";
theSiteLinks[0] = "http:// your link here";
theSummaries[1] = "New Myfreeforum Arcade Coming Soon Play Games And compete Against Over 10,000 Forums";
theSiteLinks[1] = "http:// your link here";
theSummaries[2] = "<b>Portals ??? </b> If You Can Not Find Your Answer Here, Or You Wish To Request One, Then Why Not Try----> ";
theSiteLinks[2] = "http:// your link here";
theSummaries[3]="------------------------------------------------><b>Portalogy</b><------------------------";
theSiteLinks[3] = "http://portalogy.myfastforum.org";
theSummaries[4] = "The Only Portal help Site On The Myfreeforum System------>Run By Our Portal King <b>Nick(NR)</b>,---------";
theSiteLinks[4] = "http:// your link here";
theSummaries[5] = "Do You Need Banners, Logos , Icons Or Any Art Done For Free By <b>Bravo</b> And His Team Then Why Not Try -----------> . ";
theSiteLinks[5] = "http:// your link here";
theSummaries[6] = " ----------------------------------------------><b>CGARTS</b><-------------- . ";
theSiteLinks[6] = "http://cgarts.myfreeforum.org";
theSummaries[7] = "My <b>Top Forum</b> Link Goes To ----------> . ";
theSiteLinks[7] = "http:// your link here";
theSummaries = "---------------------------------------> <b>BABBLING BOOKS</b> <---------------------------- . ";
theSiteLinks = "http://www.babblingbooks.org.uk";
theSummaries[9] = "A Very Well Run Forum With A Fresh Clean Crisp look About It, Also A forum based On Posts Not Extras. ";
theSiteLinks[9] = "http:// your link here";
theSummaries[10] = "There Are At The Moment No Major Updates that Have Been Released The Next One On The List Is <b>Myfreeforum Arcade</b>. ";
theSiteLinks[10] = "http:// your link here";
theSummaries[11] = "I Hope This Site Has Been Useful, Remember This <b>You Learn Nothing By Copy And Paste</b>---------->. ";
theSiteLinks[11] = "http:// your link here";
theSummaries[12] = "<b>Symon</b> Says <b>Practice Makes for True Knowledge.</b>";
theSiteLinks[12] = "http:// your link here";
startTicker();
//-->
</script>
</body>
</html>
I (and others) would really love to help - but you really need to learn how to write some more coherent English... it doesn't have to be perfect, just understandable.