Loading jpgs

I am designing a menu and want my buttons to display text of the scene they take you to on rollover. This is the script I am currently using but the image stays up after the mouse rolls off the button. What is the script used to fix this problem? Is there a better way to do this (ex: not having to load an external jpg. but being able to load a title in my library or a png that would only be displaed for the button on rollover.)

bounce_btn.onRollOver=function(){
loadMovie(“newspaper.jpg”, pic_mc);
_root.pic_mc._xscale = 25;
_root.pic_mc._yscale = 25;
}

Thnx for the help.

  • Colin