/*
var righe = document.getElementsByTagName('tr');
for (var i = 0; i < righe.length; i++) {
	righe[i].onmouseover = function() {
		this.className += ' secondocolore';
	}
	righe[i].onmouseout = function() {
		this.className = this.className.replace('secondocolore', '');
	}
}
*/

//box del form
var input_box = document.getElementsByTagName('input');
for (var i = 0; i < input_box.length; i++) {
	input_box[i].onmouseover = function() {
		this.className += ' secondocolore';
	}
	input_box[i].onfocus = function() {
		this.className += ' secondocolore';
	}	
	input_box[i].onmouseout = function() {
		this.className = this.className.replace('secondocolore', '');
	}
	input_box[i].onblur = function() {
		this.className = this.className.replace('secondocolore', '');
	}	
}

//textarea del form
var textarea_box = document.getElementsByTagName('textarea');
for (var i = 0; i < textarea_box.length; i++) {
	textarea_box[i].onmouseover = function() {
		this.className += ' secondocolore';
	}
	textarea_box[i].onfocus = function() {
		this.className += ' secondocolore';
	}	
	textarea_box[i].onmouseout = function() {
		this.className = this.className.replace('secondocolore', '');
	}
	textarea_box[i].onblur = function() {
		this.className = this.className.replace('secondocolore', '');
	}
}


//box trovato con ID
//var textarea_box = document.getElementsByID('tacchino');
//for (var i = 0; i < textarea_box.length; i++) {
//	textarea_box[i].onmouseover = function() {
//		this.className += ' secondocolore';
//	}
//	textarea_box[i].onfocus = function() {
//		this.className += ' secondocolore';
//	}	
//	textarea_box[i].onmouseout = function() {
//		this.className = this.className.replace('secondocolore', '');
//	}
//	textarea_box[i].onblur = function() {
//		this.className = this.className.replace('secondocolore', '');
//	}
//}