$(document).ready(function(){
	$('#contact-phone').mask('(999) 999 9999');
	$('#form-contact').ajaxForm({
		url: '/submit/contact',
		type: 'post',
		beforeSubmit:function(formData, jqForm, options){
			var errorMsg = '';
			if($("#contact-name").val() == ''){
				errorMsg += "Please enter your name.<br />";
			}
			if($("#contact-phone").val() == ''){
				errorMsg += "Please enter your phone number.<br />";
			}
			if($("#contact-email").val() == ''){
				errorMsg += "Please enter your email address.<br />";
			}
			if($("#contact-content").val() == ''){
				errorMsg += "Please enter message.<br />";
			}
			if(errorMsg != ''){
				$.prompt(errorMsg);
				return false;
			}
			$.blockUI({ css: { 
			    border: 'none', 
			    padding: '15px', 
			    backgroundColor: '#000', 
			    '-webkit-border-radius': '10px', 
			    '-moz-border-radius': '10px', 
			    opacity: '.5', 
				color: '#fff' 
			} }); 
			return true;
		},
		success:function(responseText, statusText, xhr, $form){
			$.unblockUI();
			$('#form-contact').resetForm();
			$.prompt(responseText);
		}
	});
});
