Do you see anything wrong with this code?

I feel stupid posting this…

stop();

butOne_btn.onRollOver=function(){
butOne_btn.gotoAndPlay(‘over’)
}
butOne_btn.onRollOut=function(){
butOne_btn.gotoAndPlay(‘out’)
}

butOne_btn.onPress=function(){
_root.holder_mc.loadMovie(‘intro.swf’,10)
}

butTwo_btn.onRollOver=function(){
butTwo_btn.gotoAndPlay(‘over’)
}
butTwo_btn.onRollOut=function(){
butTwo_btn.gotoAndPlay(‘out’)
}
butTwo_btn.onPress=function(){
_root.holder_mc.loadMovie(‘intro.swf’,20)
}

The buttons aren’t workin! They are on the timeline in an allButtons clip, each with instance names etc…

Any ideas?