function calculateSocialQuiz() {
		score=0;
		jQuery(".quiz:checked").each(function(){				
				score+=parseInt(jQuery(this).val());
		});
		jQuery(".scores").hide();
		if (score<10) {
			jQuery("#score0").show("slow");
		}
		if (score>=10 && score<20) {
			jQuery("#score10").show("slow");
		}
		if (score>=20) {
			jQuery("#score20").show("slow");
		}
		jQuery("#conclusion").show("slow");
	}

