﻿var laatsteKlik = "a";
function showPage(id){
	
	if(laatsteKlik != id){
		laatsteKlik = id;
		$(".page").hide(900);
		if($("#"+ id).css("display") == "none"){
			$("#" + id).show(900);
			//$("#" + id).effect("bounce", { times: 3 }, 300);
		}
	}
}
