$(document).ready(function(){
 /*  $('input[type="submit"]').click(function() {
      var data = $('form#ContactForm').serialize();
      $.post('/contacts/send_message', data, function(data){
          if(data == 0) {
              alert('Your message has been sent.');
          } else if (data == 1) {
              alert('Error sending your message.');
          }
      }, 'json');
      return false;
   }); */
});
