Flash ASp Ticker

hey people if you have a look at this dev site…
[URL=“http://www.designed4hits.com/dev/careersteps/”]
http://www.designed4hits.com/dev/careersteps/

there is a ticker at the top that currently pulls the first record from an Access Database and then pauses for 3 seconds before looping back to the start of the movie… what i need to happen is for it to on loop pull the next record from the database instead of the first… sounds easy enough!..

the actionscript im using is on the movieclip that contains the dyamic text fields… and is as follows…

onClipEvent (data) {
strTitle = Title;
strDes = Des;
}
onClipEvent (load) {
CurrentRecord = 0;
loadVariables(“getdetails.asp?Record=0”, this);
stop();
}

have looked, tried and tested throughout the net without much luck!