$(document).ready(function(){
    
    $('#contact-us').click(function(){
        
        el = $('.contacts');
        
        st = el.css('display');
        
        if(st == 'none') {
            $('#footer-pusher').css('height', '347px');
            $('#nofooter').css('margin-bottom', '-347px');
            $('#footer').css('height', '347px');
            
            window.scrollTo(0 , 10000);
            
            el.slideDown();
        }
        else {
            $('#footer-pusher').css('height', '57px');
            $('#nofooter').css('margin-bottom', '-57px');
            $('#footer').css('height', '57px');
            
            el.css('display','none');
        }
        
        return false;
        
        });
    });
