window.seleccionado=null
window.seleccionadomenu=null

over=function(e){
	if (seleccionado!=e) {
		e.style.backgroundColor='#666666';
		e.style.color='#FFFFFF';
	}	
}
out=function(e){
	if (seleccionado!=e){
		 e.style.backgroundColor='#ffffff';
 		 e.style.color='#666666';	 
	}
}
overtrans=function(e){
	if (seleccionado!=e){
	     e.style.backgroundColor='#ffffff';
  		 e.style.color='#666666';
 	}
}
outtrans=function(e){
	if (seleccionado!=e) {
	     e.style.backgroundColor='#F9F0F0'
   		 e.style.color='#666666';
 	}
}

over2=function(nom){
 var objet = null;
 if (document.getElementById) { //IE5 et NS6
  objet = document.getElementById(nom);
 }
 if ((document.all)&&(!document.getElementById)) { //IE4 seul
  objet = document.all[nom];
 }
 if (document.layers) { //NS4.X seul
  objet = document.layers[nom];
 }
 
 if ((objet!=null) && (seleccionado!=objet)) {
	objet.style.backgroundColor='#666666';
	objet.style.color='#FFFFFF';
 }	
}
out2=function(nom){
 var objet = null;
 if (document.getElementById) { //IE5 et NS6
  objet = document.getElementById(nom);
 }
 if ((document.all)&&(!document.getElementById)) { //IE4 seul
  objet = document.all[nom];
 }
 if (document.layers) { //NS4.X seul
  objet = document.layers[nom];
 }
 
 if ((objet!=null) && (seleccionado!=objet)) {
	objet.style.backgroundColor='#ffffff';
	objet.style.color='#666666';
 }	
}
