jQuery(document).ready(function($){	
	$('#submitCalc').click(function(){
		var total = 0;
		if($('input[name=agree]').is(':checked')){
			$('.costInput').each(function(){
				var percentage = $(this).attr('rel')/100;
				
				if($(this).val()=='')
				{
					$(this).val(0);	
				}
				var value =	$(this).val().replace(/^\s\s*/, '').replace(/\s\s*$/, '');	
				var intRegex = /^\d+$/;
				if(intRegex.test(value)){
					var name = $(this).attr('id');	
					var reduction = (value*percentage).toFixed(0);	
					var subTotal = (value*percentage);
					$(".euroIcon[name="+name+"] p").remove();
					$(".euroIcon[name="+name+"]").append('<p>'+reduction+'</p>');
					total= total + subTotal;
				}else{
					alert($(this).val()+' dient een rond bedrag te zijn.');
					
				}
				
			});
			$(".euroIcon[name=total] p").remove();
			$(".euroIcon[name=total]").append('<p>'+total.toFixed(0)+'</p>');
			$("ul#cCalc .contact").show();
			
		}else{
			alert('U dient eerst akkoord te gaan met de voorwaarden');	
		}
	});
	
	//automotive
	$('.buttonOne').click(function(){		
		window.location.href = '/wp-content/themes/blank2r/setSession.php?division=automotive';
	});
	
	//carrosserie
	$('.buttonTwo').click(function(){
		window.location.href = '/wp-content/themes/blank2r/setSession.php?division=carrosserie';
	});
	
	//overig mkb
	$('.buttonThree').click(function(){
		window.location.href = '/wp-content/themes/blank2r/setSession.php?division=overig_mkb';
	});
	
	//klant login
	$('.buttonFour').click(function(){		
		window.location.href = '/wp-content/themes/blank2r/setSession.php?division=klant_login';							   
	});
});


