// JavaScript Document

function changeTo(id){
	for (i=0;i<5;i++){ 
	      td="td"+i;
		
	      if(i==id){
		document.getElementById(td).style.backgroundColor="#FFCC00";
		
		}
		  else{
		document.getElementById(td).style.backgroundColor="";	  
			  }
		//alert(document.getElementById(td).style.bgColor);
		}
	
	}