$(document).ready(function() {
  
   $("#caseEvalSubmit").click(function () {
		var noErrors = formCheck("#caseEval input");
		
		if(noErrors==true)
		{
			var name = $("#cTxtName").val();
			var caseEval = $("#caseEval");
			caseEval.fadeOut("fast");
			caseEval.html("<h1><span>Thank You</span></h1> We will evaluate your case and contact you as soon as possible, "+name+".<br/><br/><br/><br/><br/><br/>");
			caseEval.fadeIn("slow");
		}
		else{
			
			
		}
	});
    $("#caseEval input,textarea").focus(function(){
		$(this).val("")						  
								  
								  
	});
   
  

});
