var myimages = new Array();

function preloading(){
	for (x=0; x<preloading.arguments.length; x++){
		myimages[x] = new Image();
		myimages[x].src = preloading.arguments[x];
	}
}
preloading("http://www.idfoods.com/en/images/OurTeam01.jpg","http://www.idfoods.com/en/images/OurTeam02.jpg","http://www.idfoods.com/en/images/OurTeam03.jpg","http://www.idfoods.com/en/images/OurTeam04.jpg","http://www.idfoods.com/en/images/OurTeam05.jpg","http://www.idfoods.com/en/images/OurTeam06.jpg","http://www.idfoods.com/en/images/OurTeam07.jpg","http://www.idfoods.com/en/images/OurTeam08.jpg","http://www.idfoods.com/en/images/OurTeam09.jpg");

function showPic(whichpic) {
  var source = whichpic.getAttribute("href");
  var placeholder = document.getElementById("placeholder");
  var teaminfo = document.getElementById("teaminfo");
  placeholder.setAttribute("src",source);  
  var text = whichpic.getAttribute("name");
  teaminfo.innerHTML = text;
  
}