window.addEvent('domready', function() {

    // new Blinker($$('a'), {startColor:'#ff0066',endColor:'#ff6600'});
    new Blinker('mission', {startColor:'#383F45',endColor:'#889CA2'});
    new Blinker('expectations', {startColor:'#383F45',endColor:'#889CA2'});
    new Blinker('story', {startColor:'#383F45',endColor:'#889CA2'});
    new Blinker('teaching', {startColor:'#383F45',endColor:'#889CA2'});
    new Blinker('announcements', {startColor:'#383F45',endColor:'#889CA2'});
    new Blinker('prayer', {startColor:'#383F45',endColor:'#889CA2'});
    new Blinker('groups', {startColor:'#ffffcc', endColor:'#F7F1EE'});
    new Blinker('finances', {startColor:'#F7F1AA'});
    new Blinker('ministries', {startColor:'#383F45', endColor:'#889CA2'});

    // new Scrollie();
    new Scrollie({ 
        wait: false,
        duration: 1000,
        transition: 'quint:out',
        completeAction: 'scrollendpoint'
        // completeAction:'scrollendpoint'
        });

    if ($type($('myForm')) == 'element') {
        var myFormValidation = new Validate('myForm',{
            errorClass: 'error'
        });
    }

});