$(function(){
    $('#call').toggle(
    function(){
        $('.call').show();
    },
    function(){
        $('.call').hide();
    }
)
})
