$(document).ready(function(){ 
	$("#button_p_arts").click(function () { 
    $(this).parent().hide();
    $('#links_arts').show();    
    return false;
  });
	$("#button_p_zorgv").click(function () { 
    $(this).parent().hide();
    $('#links_zorgv').show(); 
    return false;
  });
  
	$("#button_a_patient").click(function () { 
    $(this).parent().hide();
    $('#links_patient').show(); 
    return false;
  });
	$("#button_a_zorgv").click(function () { 
    $(this).parent().hide();
    $('#links_zorgv').show(); 
    return false;
  });
  
	$("#button_z_patient").click(function () { 
    $(this).parent().hide();
    $('#links_patient').show(); 
    return false;
  });
	$("#button_z_arts").click(function () { 
    $(this).parent().hide();
    $('#links_arts').show(); 
    return false;
  });
  
  
});

