function validateForm() {
	// create array. then put the name of the input to be validated in the array and then loop though the array to get the input that need to be validated
	if (document.getElementById("fullname").value == "") { 
		$("#fullname").css("border", "1px solid #f00");
		$("#fullname").css("background", "#fee");
		return false;
	}
}