﻿$(document).ready(function(){ 
    $('.apply_button').click( function(){
        if($('.contact_form_wrapper').css("margin-top") == "-440px"){
            $('.contact_form_wrapper').animate({marginTop: "0px"}, 1000);
        }
        else if($('.contact_form_wrapper').css("margin-top") == "0px"){
            $('.contact_form_wrapper').animate({marginTop: "-440px"}, 1000);
        }
    });
});

