$(document).ready(function() {
    $('#toggle-account-settings').click(function() {
        $('#account-settings').slideToggle('normal');
        return false;
    });
    
    $('.toggle-new-network-form').click(function() {
        $('#new_network').toggle('normal');
        return false;
    });
    
    $('#phone_numbers .remove').live('click', function() {
        $(this).parent("p").remove();
        return false;
    });
});