$(function() {
  $('.alert').hide();
  $('input.text-input').css({backgroundColor:"#FFFFFF"});
  $('input.text-input').focus(function(){
    $(this).css({backgroundColor:"#FFDDAA"});
  });
  $('input.text-input').blur(function(){
    $(this).css({backgroundColor:"#FFFFFF"});
  });

  $(".button").click(function() {
		// validate and process form
		// first hide any error messages
		//alert("checking");
    $('.alert').hide();

	$.post("/register/send/js" , { 'name':name, 'email':email },
	  function(data){
		document.getElementById("register_form").innerHTML =  data ;
	  });
    return false;
	});
});
runOnLoad(function(){
  $("input#name").select().focus();
});
