$(document).ready(function() {
    $('#banner').cycle({
        fx: 'fade',
        random: 1
    });
});

$(window).load(function() {
    showImg();

    function showImg() {
        doAnimationH1();
    }

    function doAnimationH1() {
        $(".banners h2").animate({
            opacity: 1,
            top: "+=143"
        }, 1500, function() {
            doAnimationH2();
        });
    }

    function doAnimationH2() {
        $(".banners h3").fadeIn(900);
    }
});

$(document).ready(function() {
    $("#feedbackForm").validationEngine('attach');
});

$(document).ready(function() {
    $("#donationsForm").validationEngine('attach');
});

$(document).ready(function() {
    $("#subForm").validationEngine('attach');
});

$(document).ready(function() {
    var highestCol = Math.max($('#sidebar_right').height(), $('#main_content').height(), $('#sidebar_left').height());

    $('#sidebar_left').height(highestCol);
    $('#main_content').height(highestCol);
    $('#sidebar_right').height(highestCol);
});
