$(document).ready(function() {

	$('.zoeken').click(function() {


                window.location = BASE_PATH + 'kenteken/' + $('.kenteken').val() + '/'

                /*

		$.post(AJAX_PATH, { kenteken: $('.kenteken').val()},  function(data) {
			
			$('#response').css('display', 'block');
		
		  	$.each(data, function(key, val) {
		    
			if($('#' + key).length > 0) {

				$('#' + key).html(val);
			}

			if(key == 'cars') {
				
				$.each(val.car, function(key2, val2) {
					if($('#' + key2).length > 0) {
						
						$('#' + key2).html(val2);
					}
				});
			}
			
			
		  });
		
		 
		});

                */
		
				
	})
	

});
