Rollover link list

I can make a link with a roll over effect by making a movie clip from a text box (called tekst) and assigning this action to it:

on (rollOver) {
tekst.textColor=0x00cc00;
}
on (rollOut) {
tekst.textColor=0x000000;
}

I hope this is the right way to do it. Now I would like to know how I can load a list of links and display them as rollover links. Example: go to http://www.quidante.com/versie2/go.html and click future -> links. A tutorial for the fading rollover effect is also very welcome!

Thanks!

here is the rollOver fade code:
mc.onRollOver = function() {
fade(mc, 100, 10);
};
mc.onRollOut = function() {
fade(mc, 10, 100);
};
function fade(obj, startAlpha, endAlpha) {
new mx.transitions.Tween(obj, “_alpha”, Strong.easeOut, startAlpha, endAlpha, 1.5, true);
}

place a movieClip w/ instance name of “mc” on first frame of main timeline
place this code on a keyframe on firstFrame
test

Thanks a lot, but I can’t get it to work. I would really appreciate it if someone could send me the fla file (pieterprovoost@tiscali.be).

Thanks again

sent to
pieterprovoost@tiscali.be