$(document).ready(function () {
	$("#submit_contact").click(function() { $('#contact_form').submit(); return false; });
	if (!$("#name").val()) {
		$('#name').focus();
	} else {
		$('#comments').focus();
	}
	$("form input").keypress(function (e) {  
		if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {  
			$('#contact_form').submit();
			return false;  
		} else {  
			return true;  
		}
	});  
	$("#contact_form").validate();
});
