$(document).ready(function(){
	$('#contact-message').validate({
		rules: {
			Str_Phone : {
				minlength: 8
			}
		}
	});
	$('#contact-callback').validate({
		rules: {
			Str_Phone : {
				minlength: 8
			}
		}
	});
	$('#career-message').validate({
		rules: {
			Str_Phone : {
				minlength: 8
			}
		}
	});
	$('#registermail-form').validate();
	
});
