//laden van de navigatie functie!

function postvaluesofadd(name,btwname,surname,sex,address,housenr,zipcode,city,email,phone,day,month,year,member,education,paymethod,extra)
{
  $("#content_left").load("pages/voegkindtoe.php?name="+encodeURIComponent(name)+"&btwname="+encodeURIComponent(btwname)+"&surname="+encodeURIComponent(surname)+"&sex="+sex+"&address="+encodeURIComponent(address)+"&housenr="+encodeURIComponent(housenr)+"&zipcode="+encodeURIComponent(zipcode)+"&city="+encodeURIComponent(city)+"&email="+encodeURIComponent(email)+"&phone="+encodeURIComponent(phone)+"&day="+day+"&month="+month+"&year="+year+"&member="+member+"&education="+encodeURIComponent(education)+"&paymethod="+paymethod+"&extra="+encodeURIComponent(extra));
  return false;
}

function smallpost(name,btwname,surname)
{
  $("#content_left").load("pages/voegkindtoe.php?name="+name+"&btwname="+btwname+"&surname="+surname);
  return false;
}

function backtohome()
{
  $("#content_left").load("pages/home.php");
  return false;
}

$(document).ready(function(){
  $("#content_left").load("pages/home.php");
 
	$(".nav_link").click(function(){
		$("#nav_introductie").hide();
		var pagina = $(this).attr("href");
		$("#content_left").load(pagina);
		return false;
	});
	
	$(".nav_link").click(function(){
		$("#nav_introductie").hide();
		var pagina = $(this).attr("href");
		$("#content_left").load(pagina);
		return false;
	});
	  
  $(".nav_link2").click(function(){
		$("#content_left").load("pages/introductie.php");
		$("#nav_introductie").toggle();
		return false;
	});
	
	$(".nav_link3").click(function(){
		var pagina = $(this).attr("href");
		$("#content_left").load(pagina);
		return false;
	});
	
	 $("#nav_introductie").hide();
});

