/**
 * @author edsadr
 */
$(function(){
	$("#contactform").validate({
		submitHandler: function(form){
			jQuery(form).ajaxSubmit({				
				 success: sentMail
			});
		}		
	});	
});

function sentMail(responseText,statusText){
	if(responseText=='1'){
		alert("Wrong verification code, please try again");
		Recaptcha.reload();	
	}
	else{
		alert(responseText);
		document.getElementById('contactform').reset();	
		Recaptcha.reload();	
	}	
}
