function colorThis(id,stato) {
	var item	= document.getElementById(id);
	
	if(stato=='on') {
		item.style.backgroundColor='#271b16';
	}
	else {
		item.style.backgroundColor='';
	}
}

