JavaScript изменяет цвет элемента HTML

	var element = document.getElementById("myElement");
	element.style.color = "#FF0000";
Kenzy