tellTarget Help

I am trying the create a flash navigation and am wondering if i can apply two onrelease tellTarget onto the same button. here is my code that i am working with and you can see at the end where i have the two onrelease actions.

stop();

this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}

this.onRollOver = function(){
rewind = false;
play();
}

this.onRollOut = function(){
rewind = true;
}

this.onRelease = function() {
tellTarget("/main_nav"){
gotoAndPlay(1)
}

tellTarget(“main_nav/serv_sub_nav”){
gotoAndPlay(1)
}
};

any help is greatly appreciated !