function showfoto (id) {
	$.ajax({
          type: "GET",
          url: "ajax.php",
          data: "image="+(id),
          success: function(response){
                                  document.getElementById("photo").innerHTML = response;
                            },//function success
          error: function (){ alert('something wrong with ajax!') }
  });
}



function showproject (id) {
	$.ajax({
          type: "GET",
          url: "ajax.php",
          data: "content="+(id),
          success: function(response){
                                  document.getElementById("project").innerHTML = response;
                            },//function success
          error: function (){ }
  });
}




