$(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 },
		//$.post("/register/send/js" , { 'name':$("input#name").val(), 'email':$("input#email").val() },
    	$.post("/register/send/js" , { 'name':$("input#name").val(), 'email':$("input#email").val()},	  	
		function(data)
		{
			//document.getElementById("register_form").innerHTML =  data ;
			var image = new Image(1,1);
			image.src = " http://www.googleadservices.com/pagead/conversion/1018742933/?label=1ls6COvb3wEQlZHj5QM&amp;guid=ON&amp;script=0";
			window.location = "/thank_you_message/";
	  	});
    	return false;
	});
});
	
runOnLoad(function()
{
	$("input#name").select().focus();
});
