$(function() {
	$("#demo_submit").click(function(){
		$("#error_container_name").hide();
		$("#error_container_email").hide();
		registerForm();
	});
	
});

function registerForm(){	
			$.post("/_ajax/ajax.index.php",$("#demo_form").serialize() + '&file=sidebar_form',function(result){	
				if(result.err!="") {
					if(result.err.indexOf("Name") != -1)	
					{
						$("#error_container_name").show();
					}
					
					if(result.err.indexOf("Email") != -1)	
					{
						$("#error_container_email").show();
					}
				} else {
					var html = $("#pricing_contact_layer_after").html();
					$("#demo_content").html(html);
					}
				},"json");
				
		}
