 $(document).ready(function() {
	 $(".error").each(function() {
		 $(this).next().next().children("input, textarea").css('border-color','#dc3c1e');
		 if(($(this).next().next().children("input, textarea").val()!='')&&($(this).next().next().children("input, textarea").attr('id') == 'contacteeEmail')) {
			 $(this).css('display','inline');
		 }else if(($(this).next().next().children("input, textarea").val()!='')&&($(this).next().next().children("input, textarea").attr('id') == 'answer')) {
			 $('.tagcaptcha').css('color','#FF0000');
		 }else {
			 $('.tagrequired').css('color','#FF0000');
		 }
		});
	 $(".systemerror").each(function() {
		 $(this).css('display','inline');
		});
//	 $('.field, .textarea, .captchafield').click(
//				function(){
//				$('.tagrequired').css('color','#999999');
//				$('.tagcaptcha').css('color','#999999');
//				$('.error').remove();
//				$('#successmessage').remove();
//				$('.field').css('border-color','#cccccc');
//				$('.textarea').css('border-color','#cccccc');
//				$('.captchafield').css('border-color','#cccccc');
				
//			});
			
 });

function closeOverlay(){
	$(document).unbind('click');

}
