Bene ho fatto!!!

<script type='text/javascript'>
function evidenzia(ww,hh){
if(document.getElementById && document.getElementsByTagName){

var t=document.getElementById('tabella_incontri');
var rr=t.getElementsByTagName('tr');

var c1="colore_1"; //colore incontro
var c2="colore_2"; //colore squadre
var c3="colore_4"; //colore incrocio
var c4="colore_5"; //........
var c4="colore_6"; //........

for(var r=0; r<=hh; r++){
for(var c=0; c<=ww; c++){
var cc=rr[r].getElementsByTagName('TD')[c];

if(c==ww && r==hh) cc.style.backgroundColor=c5;//cc.style.font-size:17px
else if(c==0 && r==0) cc.style.backgroundColor=c4;
else if(c==r) cc.style.backgroundColor=c3;
else if((c==0 && r==hh)||(c==ww && r==0)) cc.style.backgroundColor=c2;
else if((c==ww && r<=hh)||(c<ww && r==hh)) cc.style.backgroundColor=c1;
}
}
}
}
</script>
<script type='text/javascript'>
function ripristina(ww,hh){
if(document.getElementById && document.getElementsByTagName){

var t=document.getElementById('tabella_incontri');
var rr=t.getElementsByTagName('tr');

var c1="colore_1"; //colore incontro
var c2="colore_2"; //colore squadre
var c3="colore_3"; //colore incrocio
var c4="colore_4"; //........

for(var r=0; r<=hh; r++){
for(var c=0; c<=ww; c++){
var cc=rr[r].getElementsByTagName('TD')[c];

if(c==0 && r==0) cc.style.backgroundColor=c4;
else if(c==r) cc.style.backgroundColor=c3;
else if((c==0 && r==hh)||(c==ww && r==0)) cc.style.backgroundColor=c2;
else if((c==ww && r<=hh)||(c<ww && r==hh)) cc.style.backgroundColor=c1;
}
}
}
}
</script>

con la funzione evidenzia coloro le celle e con la funzione ripristina rimetto i colori originali.....
....domani poi cerco di farlo con una sola funzione....ah!! dimenticavo li richiamo così:

<td width='25' height='15' class='table-8' style='background-color:#333333;' onMouseOver="evidenzia(0,1);" onMouseOut="ripristina(0,1);" id='cells_0_1'>[img]$PATH_IMAGE/shim.gif[/img]</td>

anche qui però devo eliminare forse l'id ad ogni tag TD......

comunque se serve a qualcun'altro eccolo pronto............... ciauzzzzzzzzzzzz :metallica