﻿$(document).ready(function () {
    $('#graphic, #textBlock, #text, .header, .c-panel').hide();
    $('#textBlock').animate({ width: "toggle", opacity: 1 }, 500, function () {
        $('#text, .header').fadeIn('fast'); //fades the text into view.
    });
    $('#graphic').delay(550).animate({ width: "toggle", opacity: 1 }, 1000, function () {
        $('.c-panel').fadeIn('slow'); //fades the buttons into view.
    });  
 });
