/*
 * need jQuery
 */
(function($) {

$(document).ready(function(){
  $('#contactForm').submit(function() {
    $('input[type=text], textarea', this).removeClass('bad');
    if (!$.trim($('#message', this).val())) {
      $('#message', this).addClass('bad').focus();
    } else if (!/.+\@.+\..+/.exec($('#email', this).val())) {
      $('#email', this).addClass('bad').focus();
    } else {
      var post_data = $.param({
        'email' : $('#email', this).val(), 
        'message' : $('#message', this).val()
      });
      $.ajax({
        type: 'POST',
        url: 'http://www.r-stone.net/cgi-bin/contact_r-stone_message.cgi',
        data: post_data,
        beforeSend: function() {
          $('#message_send').attr('disabled', 'desabled');
        },
        success: function(res) {
          $('#message_send').removeAttr('disabled');
          if (res == 'OK' ) {
            $('#contactForm').remove();
            $('#contactFormSend').show();
          } else {
            alert('メッセージの送信に失敗しました orz');
          }
        }
      });
    }
    return false;
  });
});

})(jQuery);