
/*------------*/
/*--  HOME  --*/
/*------------*/

function home(){
    $("#open").click(function(){
        $("#open").fadeOut();
        openNewTopic(10);
    });
    
    $("#close").click(function(){
        closeNewTopic();
    });
}

function openNewTopic(delay){
    $("#new_topic").delay(delay).animate({ right: 0 }, 600);
    $("#new_topic_cache").delay(delay).animate({ right: 0 }, 600);
    $("#open").fadeOut();
}

function closeNewTopic(){
    $("#open").fadeIn();
    $("#new_topic").animate({ right: -220 }, 400);
    $("#new_topic_cache").animate({ right: -220 }, 400);
}
