$(function(){$('.error').hide();$('input.text-input').css({backgroundColor:"#FFFFFF"});$('textarea.text-input').css({backgroundColor:"#FFFFFF"});$('input.text-input').focus(function(){$(this).css({backgroundColor:"#FFDDAA"});});$('textarea.text-input').focus(function(){$(this).css({backgroundColor:"#FFDDAA"});});$('input.text-input').blur(function(){$(this).css({backgroundColor:"#FFFFFF"});});$('textarea.text-input').blur(function(){$(this).css({backgroundColor:"#FFFFFF"});});$(".button").click(function(){$('.error').hide();var name=$("input#name").val();if(name==""){$("label#name_error").show();$("input#name").focus();return false;}
var email=$("input#email").val();if(email==""){$("label#email_error").show();$("input#email").focus();return false;}
var message=$("textarea#message").val();if(message==""){$("label#message_error").show();$("textarea#message").focus();return false;}
var dataString='name='+name+'&email='+email+'&message='+message;$.ajax({type:"POST",url:"/bin/process.php",data:dataString,success:function(){$('#contact_form').html("<div id='message'></div>");$('#message').html("<h2>Thank you!</h2>").append("<p>Someone from NextGen Studios will be in touch with you soon.</p>").hide().fadeIn(1500,function(){$('#message').append("<img id='checkmark' src='/images/check.png' />");});}});return false;});});runOnLoad(function(){$("#header").select().focus();});
