function countCheckedsbTest() {
  var n = $("#sbt input:checked").length;
  if (n <= 3) {
  	$('#sbt').animate({
  		opacity: 0,
  		height: 0
  	}, 2000, function(){
		$('#sbt').css('display', 'none');
  		$('#negativSBTest').fadeIn();
  	});
  	
  }  else {
  	$('#sbt').animate({
  		opacity: 0,
  		height: 0
  	}, 2000, function(){
		$('#sbt').css('display', 'none');
  		$('#sbTestPositiv').fadeIn(500);
  	});
  }
}

