base_url = "http://www.schutvandeven.nl/";

$(document).ready(function(){
	$("#employeePictures img").click(function(){
		var id = $(this).attr('id');
		$.ajax({
		  type: 'POST',
		  url: base_url +"index.php/employee/getEmployee/",
		  data: "id=" +id,
		  success: function(data){
			  $(".employeeContent").html(data);
		  }
		});
	});
});


