/* RJ @ emperor */
/* Page loading animation */

$(document).ready(function() {
    /* hide boxes on load */
    $('.sectionbox').hide();
    $('.rhs').hide();
    $('#welcome').hide();
    $('.logo').hide();
});
$(window).ready(function() {
    // set boxes to same height
    $('.content img').load(function() {
        $('.content').each(function() {
            var currentTallest = 0;
            $(this).children().each(function(i) {
                if ($(this).height() > currentTallest) { currentTallest = $(this).height(); }
            });
            $(this).children().css({ 'height': currentTallest });
        });
    });
    /* animate! */
    $('#welcome').fadeIn(1000).delay(4500).fadeOut(1000);
    $('.logo').delay(3000).fadeIn(1000, function() {
        $('.sectionbox').eq(0).slideDown(1000);
        $('.sectionbox').delay(250).eq(1).slideDown(1000);
        $('.sectionbox').delay(250).eq(2).slideDown(1000);
        $('.rhs').delay(750).slideDown(500);
    });
});
