function trouvestyle(idf) { 
    if (document.getElementById) {
      return document.getElementById(idf).style;
    } else if (document.all) {
      return document.all[idf].style;
    } else if (document.layers) {
      return document.layers[idf];
    } else { return null }
  }
function newstyle(idf,prop,value) {
     var objet_style= trouvestyle(idf);
     if(objet_style) 
        eval( 'objet_style.' + prop + '="' + value+ '"' );
  }
function Over(id,newcolor) {
	newstyle(id,'backgroundColor',newcolor);
	newstyle(id+'long','color','#FFFFFF');
	newstyle(id+'mot','color','#FFFFFF');
}
function Out(id) {
	newstyle(id,'backgroundColor','');
	newstyle(id+'long','color','');
	newstyle(id+'mot','color','');
}