/*
 * Site-wide jQuery Routines
 */

$(document).ready(function() {

    $("#desc_text p").hide().serial_fade({speed:3000,fade:'in'});

    $("#name_subtext").innerfade({
        speed: 'slow',
        timeout: 3000,
        type: 'sequence'
    });
    
    $("#drawer_toggle").toggle(
        function () {
            $("#drawer_content").animate({"height":"110px"}).animate({"height":"100px"});
        },
        function () {
            $("#drawer_content").animate({"height":"110px"}).animate({"height":"0"});
        }
    );
    
});