function theSoulLaunch() {
    jQuery('#the-soul-launch').hide();
    jQuery('#wrapper').fadeIn();
    jQuery('body').removeClass('pre-launch');
    jQuery('body').unbind('click');
}

jQuery(document).ready(function() {
    /*
    jQuery('#countdown').countdown({
        until: new Date("December 26, 2009 23:59:59"),
        format: 'dHMS',
        timezone: +60,
        onExpiry: theSoulLaunch,
        alwaysExpire: true,
    });
    jQuery('body.pre-launch').click(function() {
        document.location.href = 'http://www.facebook.com/event.php?eid=214767753087';
        return false;
    });
    */

    jQuery(".sf-menu a[title]").tooltip({ tip: '#menutip' });

    jQuery('#comment').focus(function() {
        jQuery('#form-allowed-tags').slideDown();
    }).blur(function() {
        jQuery('#form-allowed-tags').fadeOut();
    });
});
