// JavaScript Document

$(document).ready(function(){
	
	function errorChecking(form) {
		var noErrors = true;
		form.find(".req").each(function(){
			var r = $(this);
			if(r.attr("name")) {
				if(!r.val()){
					$("#"+r.attr("name")).show("slow").css("color","#FF9788");
					noErrors = false;
					}else{
						$("#"+r.attr("name"));
						noErrors = true;
						}	
				}
			
			});
		return noErrors;
	}
		
	$("#BtnSubmit").click(function(){
			return errorChecking($("#footerForm"));
	
		});
		
	$("#BtnContact").click(function(){
			return errorChecking($("#contactForm"));			
		});		

});
