$(document).ready(function() {

	$("#frmcontac").validate({
		event: "blur",
		rules: {
			'fname': { required: true },
			'email': { required: true, email: true },
			'address': { required: true },
			'comment': { required: true }
		},
		messages: {
			'fname': "Ime?",
			'email': "E-mail?",
			'address': "Telefon?",
			'comment': "Poruka?"
		},
		
		debug: true,
		errorElement: "label",
		errorContainer: $("#errores"),
		submitHandler: function(form) {
			$.ajax({
				
				beforeSend: function(objeto){
					$("#poruka").html('Zahvaljujemo!');
					$('#fname').val('');
					$('#email').val('');
					$('#comment').val('');
					$('#address').val('');
					
				},

				type: "POST",
				url: "mdcontact_sr.php",
				contentType: "application/x-www-form-urlencoded",
				processData: false,
				data: "fname="+$('#fname').val()+"&email="+$('#email').val()+"&comment="+$('#comment').val()+"&address="+$('#address').val(),
				dataType: "json",
				success: function(json){
					//if (json.success == true) {
						$('#fname').val('');
						$('#email').val('');
						$('#comment').val('');
						$('#address').val('');
						$('#poruka').html('');
						//jQuery.facebox({ ajax: 'http://www.nsdjenko.edu.rs/em.html' });
					//}else{
						//$('#poruka').html(json.message);
					//}
				}

			});
		}
	});	

});


