// JavaScript Document
$(document).ready(function(){
	$('#quiz-form').submit(function(e){
		e.preventDefault();
		$.post('/content/diet-quiz/quiz-results.php', $("#quiz-form").serialize(), function(data) {
			$('#article-content').html(data);
			$("#article-content").scrollTop();
			
			// Scroll to the top of the results
			$('html, body').animate({
				scrollTop: $("#article-content").offset().top
			}, 500);
		});
	
	});

});
