

$(document).ready(function(){
  $("#contact h1").bind("click", function(){
    
    //var contactPosition = $("#contact").css("top");
    //console.log( $("#contact").position().top );
    
    if ( $("#contact").position().top == -36 ) {
      
      $("#contact").animate({
        top: -362,
        height: 360
      });
    } else {
      
      $("#contact").animate({
        top: -36,
        height:35
      });
      
    };
    
  });
});


