window.addEvent('domready', function() {
    $$('#header a').each(function(link) {
        link.addEvents({
            'mouseover': function() {
                this.tween('color', '#0CC04D')
            },
            'mouseout': function() {
                this.tween('color', '#0098f0')
            }
        });
    });
});
