How can I modify TellTarget Script

As a newbie to Actionscript I’m hoping someone can take a moment and help with my question.

In the Advanced Rollovers tutorial found here at kirupa.com, I used the following actionscript on one of the buttons as instructed in the tutorial (it worked fine):

First Button

on (rollOver) {
tellTarget ("/rollover") {
gotoAndPlay (“1text”);
}
}
on (rollOut) {
tellTarget ("/rollover") {
gotoAndPlay (“1back”);
}
}

On Rollover this called the MovieClip called “Rollover” and played the embedded tween called 1text. The on rollout did the reverse.

What I would like to do is on rollover have an image or text box display instead of the tweened graphic and on rollout have the image disappear.

How can we change the actionscript to do this?

Thanks,
martin