jQuery.validator.setDefaults({
	min: 3
});

$(document).ready(function(){
	$('#commentform').validate();
	
	if ($('#captcha').length > 0) {
	Recaptcha.create("6LdRy7sSAAAAAACGulxkGUZVlahPrYqTHMPYiE9L",
		"captcha",
		{
		  theme: "white",
		  tabindex : 7,
		  callback: Recaptcha.focus_response_field
		}
	);
	}
});
