// JavaScript Document

$(document).ready(function() {
						   
	$("#slider").easySlider({
		auto: true,
		continuous: true,
		controlsShow: false,
		speed: 1200,
		pause: 9000,
		orientation: 'vertical'
		});

	
	
});

function setLevering(soort){
	var deSoort = soort;
	var subtotaalPrijs = document.getElementById('mijnSubTotaalPrijs').value;
	var gewichtPrijs = document.getElementById('mijnGewichtPrijs').value;
	var totaalPrijs = document.getElementById('mijnTotaalPrijs').value;
	
	if(deSoort == 'post')
	{
		document.getElementById('verzendkostspan').innerHTML = gewichtPrijs;
		document.getElementById('totaalkostspan').innerHTML = totaalPrijs;
	}else{
		document.getElementById('verzendkostspan').innerHTML = '0.00 &euro;';
		document.getElementById('totaalkostspan').innerHTML = subtotaalPrijs;
	};
}
