(function($) {
	$(function(){
            
                $('#register_form').submit(function(e){
                    e.preventDefault();

                    

                    $.ajax({
			  dataType : 'json'
                        , data     : "name="+$('#Fname').val()+"&email="+$('#Femail').val()
                        , type     : 'post'
                        , url: '/contact-us/register'

                        , success: function(data) {
                            if(data.success == false){
                                console.log(data.errors);
                                $('#messages').html(data.errors);
                                $('#messages').show();

                            }
                            else{
                               // console.log('SUCESS');
                                $('.register-cta').html("<h2>Success!</h2><p style=\"padding: 5px 10px 0px 30px; color: rgb(255, 255, 255);\">Thank you for your interest. You have successfully registered for updates.</p>");
                            }
//                        //console.log(data)
                      }
                    });
                });
                
	});
})(jQuery);

