$(document).ready(function() { 
  $('input.review').click(function() {
    var name = $('#review_name').val();    
    var application = $('#review_application').val();    
    var review = $('#review_message').val();    
    var location = $('#review_location').val();

    if (!name) { $('#review_name').focus(); alert('Please enter a name.'); return false; }
    if (!application) { $('#review_application').focus(); alert('Please choose an application.'); return false; }
    if (!review) { $('#review_message').focus(); alert('Please enter a review.'); return false; }

    $('input.review').val('Sending your review...').attr('disabled', true);

    $.post("/submit_review.php", { name: name, location: location, review: review, application: application },
      function(data){
      
        alert('Thanks for taking the time to share your thoughts with us!  Please feel free to contact us directly at any time as well.');
        $('#review_name').val('');
        $('#review_location').val('');
        $('#review_message').val('');        
        $('input.review').attr('disabled', false);
        window.location.reload();
        //$('input.review').val('Your review has been sent');
      });
    return false;
  });
});
