вот так будет работать

Код AS1/AS2:
for(i=1;i<7;i++){
but = _root["cerculet_albastru"+i]
but.id = i
but.onRollOver=function(){
intunecam(this.id);
_root.minvit=1
}
but.onRollOut=function(){
intunecam2(this.id);
_root.minvit=2
}
}
function intunecam(j){
for(ti=1;ti<7;ti++)
{
//_root.arialix.text=j;
if(ti!=j){_root["cerculet_albastru"+ti]._alpha=20};
}
}
function intunecam2(j){
for(ti=1;ti<7;ti++)
{
//_root.arialix.text=j;
if(ti!=j){_root["cerculet_albastru"+ti]._alpha=100};
}
}