// JavaScript Document


function recepten(kl,n){
	
	
$.ajax({
  url: "http://aardappelanders.nl/meerrecepten.php?kl="+kl+"&n="+n,
  context: document.body,
  success: function(data){
    $('#receptentd').html(data);
  },
  error: function(){
//	  alert('error');
  }
});



}
