Novice needs help with a rollover

I want to create a list of board members for an organization and I want their picture and bio to appear on the page when the user rolls over their name. Is there an easy way to do this? I don’t quite have the actionscripting down yet, but I learn fast. Any help would be appreciated.
TIA!

Hmmm, you could create a new movie clip with, lets say 5 frames (if you are using 4 pictures), each with a stop() action. You should leave the first frame blank, and add 1 picture per frame to each of the remaining. Drag this clip onto the screen where you want it. Give this movie clip the instance name of “pics” (without quotes).

On the link of the name add the actions…


on (rollOver) {
	_root.pics.gotoAndStop(2);
}

where the 2 would be the frame number of the picture you want to go to.