$(document).ready(function(){

	$('.check_message').click(function(){
		$('.name_e').html('');
		$('.email_e').html('');
		$('.phone_e').html('');
		$('.message_e').html('');
		if($('#phone').val().length < 10 || $('#name').val().length < 3 || $('#email').val().length < 6 || $('#qc').val() == ""){
			if($('#phone').val().length < 10){
				$('.phone_e').html('&middot; ' + 'Please fill in the field "'+$('#phone').parent('p').children('label').html().replace(': *', '')+'"!<br />');
			}
			if($('#name').val().length < 3){
				$('.name_e').html('&middot; ' + 'Please fill in the field "'+$('#name').parent('p').children('label').html().replace(': *', '')+'"!<br />');
			}
			if($('#email').val().length < 6){
				$('.email_e').html('&middot; ' + 'Please fill in the field "'+$('#email').parent('p').children('label').html().replace(': *', '')+'"!<br />');
			}
			if($('#qc').val() == ""){
				$('.message_e').html('&middot; ' + 'Please fill in the field "'+$('#qc').parent('p').children('label').html().replace(': *', '')+'"!<br />');
			}
			return false;
		} else {
			return true;	
		}
	});
	$('.check_message').val('');

});