var td = document.getElementsByTagName("td");
for(var i = 0; i < td.length; i++){
	if(td[i].className == 'anuncio'){
		var anuncio = td[i];
		
		anuncio.onmouseover = function(){
			this.style.background = '#DAF1FC';
		}		
		anuncio.onmouseout = function(){
			this.style.background = 'none';
		}
	}
}