function textgray() {
        document.getElementById('text').style.color = '#ccc';
}

Event.observe(window, 'load', textgray, false);

