Button.prototype.onRollOver = function(){
for(var btn in _root){
if(typeof(_root[btn])=="object" && _root[btn].type== undefined)
//to eliminate textfields
_root[btn]._visible = false;
}
_root[this._name]._visible = true;
}
Button.prototype.onRollOut = function(){
for(var btn in _root){
if(typeof(_root[btn])=="object" && _root[btn].type== undefined)
_root[btn]._visible = true;
}
}