﻿$(document).ready(function() {
    $("#lcover").css({ display: 'none' });
    $("#rcover").css({ display: 'none' });

        $("#trulogo").animate({
            marginTop: 83
        }, 0);

});


$(document).ready(function() {
    $(this).delay(1600, function() {
    $("#maincover").animate({
                opacity: 0
            }, 2500).animate({height: '10px'}, "fast");
        });        
});


jQuery.fn.delay = function(time, func) {
    this.each(function() {
        setTimeout(func, time);
    });

    return this;
};
