function berekenPrijs()
{
	var stukprijs = 12.95;
	var aantal = document.getElementById('aantal').value;
	var prijs;
	var totaalPrijs;
	
	if(aantal > 0)
	{
		prijs = stukprijs * aantal;
		
		switch(aantal)
		{
			case '1':
				totaalPrijs = prijs + 1.80;
				document.getElementById('verzendkosten').value = '1,80';
				break;
			case '2':
				totaalPrijs = prijs + 2.20;
				document.getElementById('verzendkosten').value = '2,20';
				break;
			case '3':
				totaalPrijs = prijs + 2.70;
				document.getElementById('verzendkosten').value = '2,70';
				break;
			default :
			case '4':
				totaalPrijs = prijs + 6.75;
				document.getElementById('verzendkosten').value = '6,75';
				break;
		}
		
		prijs = Math.round(prijs * 100) / 100;
		totaalPrijs = Math.round(totaalPrijs * 100) / 100;
		
		prijs += '';
		totaalPrijs += '';
		
		prijs = prijs.replace('.', ',');
		totaalPrijs = totaalPrijs.replace('.', ',');
		
		document.getElementById('prijs').value = prijs;
		document.getElementById('totaalPrijs').value = totaalPrijs;
	}
	else
	{
		document.getElementById('prijs').value = '-';
		document.getElementById('verzendkosten').value = '-';
		document.getElementById('totaalPrijs').value = '-';
	}
}
