
$(function(){$('.error').hide();$('input.text-input').css({backgroundColor:"#FFFFFF"});$('input.text-input').focus(function(){$(this).css({backgroundColor:"#EFEFEF"});});$('input.text-input').blur(function(){$(this).css({backgroundColor:"#FFFFFF"});});$(".button").click(function(){$('.error').hide();var name=$("input#name").val();var email=$("input#email").val();var comment=$("textarea#comment").val();if(name==""){$("label#name_error").show();$("input#name").focus();return false;}
if(email==""){$("label#email_error").show();$("input#email").focus();return false;}
if(comment==""){$("label#comment_error").show();$("textarea#comment").focus();return false;}
var dataString='name='+name+'&email='+email+'&comment='+comment;$.ajax({type:"POST",url:"files/process.php",data:dataString,success:function(){$('#contact_form').html("<div id='message'></div>");$('#message').html("<p><b>Success!</b></p><p>Your comment has been sent to Hardian!</p>").hide().fadeIn(400,function(){$('#message').append("<p align='center'><img id='checkmark' src='images/check.png' /></p>");});}});return false;});});runOnLoad(function(){$("input#name").select().focus();});
