function submitKeepInTouch(){
  var email = $('#keepintouchform input.text').val();
  $.post('/ajax.functions.php',{action:'keepintouch',email:email},function(){
    
  });
  $('#keepintouchform').hide();
  $('#keepintouchform_thankyou').show();
}

