   $(document).everyTime(1700, function(){
			var inputvalue = $("input#edit-submitted-hoeveel-accounts").val();
			
			$("p.totaal-prijs").text("Kies een pakket!");
			if ($("input#edit-submitted-grote-3GB:checked").val() != null)
				{
					var totaal = inputvalue *  9;

					if (inputvalue >= 5)
					{
						var totaal = inputvalue *  8;
						$("p.totaal-prijs").text('\u20AC' + ' ' + totaal);
					}
					if (inputvalue >= 10)
					{
						var totaal = inputvalue *  7.50;
						$("p.totaal-prijs").text('\u20AC' + ' ' + totaal);
					}
					$("p.totaal-prijs").text('\u20AC' + ' ' + totaal);
					
					if (inputvalue == "") {
						$("p.totaal-prijs").text("Vul de aantallen in!");
					}
				}
				
			if ($("input#edit-submitted-grote-5GB:checked").val() != null)
				{
					var totaal = inputvalue *  12;
				
					if (inputvalue >= 5)
						{
						var totaal = inputvalue *  11;
						$("p.totaal-prijs").text('\u20AC' + ' ' + totaal);
						}
					if (inputvalue >= 10)
						{
						var totaal = inputvalue *  10.50;
						$("p.totaal-prijs").text('\u20AC' + ' ' + totaal);
						}
						
					$("p.totaal-prijs").text('\u20AC' + ' ' + totaal);
					if (inputvalue == "") {
						$("p.totaal-prijs").text("Vul de aantallen in!");
					}
				}
			if ($("input#edit-submitted-grote-10GB:checked").val() != null)
				{
					var totaal = inputvalue *  15;
				
					if (inputvalue >= 5)
						{
						var totaal = inputvalue *  14;
						$("p.totaal-prijs").text('\u20AC' + ' ' + totaal);
						}
					if (inputvalue >= 10)
						{
						var totaal = inputvalue *  13.50;
						$("p.totaal-prijs").text('\u20AC' + ' ' + totaal);
						}
					$("p.totaal-prijs").text('\u20AC' + ' ' + totaal);
					if (inputvalue == "") {
						$("p.totaal-prijs").text("Vul de aantallen in!");
					}
				}
			if (isNaN(inputvalue)) { $("p.totaal-prijs").text("Alleen nummers a.u.b.");}			
}, 0);


$(document).ready( function() 
	{
 		$("form#webform-client-form-5 input.form-submit").click(function() 
		{
			var inputvalue = $("input#edit-submitted-hoeveel-accounts").val();
			
			if ( isNaN(inputvalue) || 
				inputvalue == "" || 
				$("input#edit-submitted-je-naam").val() == "" ||
				$("input#edit-submitted-je-e-mail").val() == "" ) 
			{
					alert('Vul a.u.b. de juiste gegevens in!');
					return false;
			}
			if ( $("input#edit-submitted-grote-3GB:checked").val() == null &&
				$("input#edit-submitted-grote-5GB:checked").val() == null &&
				$("input#edit-submitted-grote-10GB:checked").val() == null)
			{
					alert('Vul a.u.b. de juiste gegevens in!');
					return false;
			}
		});
	});
