Mouse cursor problemo

Here is what i what i have so far. I have a movieclip named bananc.swf of a banana cursor. The movie clips (cursor’s) actions are
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
setProperty(this, _x, _root._xmouse);
setProperty(this, _y, _root._ymouse);
}

My main movie has a button of a banana, with these actions
on (release) {
loadMovieNum(“bananac.swf”, 1);
}

It works but i want to have it so when i click the banana button again it goes back to normal. What do i need to add to my button? Thanks in advance.

Alex

on the button use this AS-

on(press){
bananacursor=!bananacursor
if(bananacursor) loadMovieNum(“bananac.swf”, 1);
else unloadMovieNum(1)
}

thanks!

it hides the banana and the mouse cursor. I want my mouse cursor back when they click it again.

this part is in the bananac.swf not in the main movie.

onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
setProperty(this, _x, _root._xmouse);
setProperty(this, _y, _root._ymouse);
}

i got it to work right. i just added mouse show after everything.
~Alex

on(press){
bananacursor=!bananacursor
if(bananacursor){
loadMovieNum(“bananac.swf”, 1);
Mouse.hide()
}
else{
unloadMovieNum(1)
Mouse.show()
}
}

arrgh i posted at the same time, just after you!