/* * * * * * * * * * * * * * * * *
 * Animate the splash page yeah  *
 * * * * * * * * * * * * * * * * */
$(document).ready(function(){

    function animateContent(){
        $('#splash').fadeOut();
        $('#logo').fadeIn();
        $('#content').slideDown(1000, function(){
            $('#footer').show();
            fixContentHeight();
        });
    }

    function animateLogo(){
        $(this).delay(1000).animate({
            left: -44,
            top: 14,
            height: 196,
            width: 342
        }, 1000, animateContent);
    }

    function init(){
        $('#logo').hide();
        $('#content').hide();
        $('#footer').hide();
        $('#main').append(
            '<img id="splash" style="position:absolute; left: 125px; top: -10px;" src="/img/biglogo.jpg" alt="loading..." />'
        );
        $('#splash').load( animateLogo );
    }

   init();
});

