// JavaScript Document
$(document).ready(function() {
  $('.results').hide();
});



function employee_wellbeing(form){
		var total=0;
		for(var i=0; i < document.empWB.question.length; i++){
			if(document.empWB.question[i].checked){
				total=total+1;
			}
		}
		
		showresults(total);
		
		return false;
}
	
	
	
	function showresults(total){
		
		$('#wellbeing6').hide();
		$('#wellbeing3').hide();
		$('#wellbeing0').hide();
			
		if(total>=6){
		  	$('#wellbeing6').show();
		}
		else if(total<3){
		 	$('#wellbeing0').show();
		}
		else if(total<6){
			$('#wellbeing3').show();
		}
	}
				
		
