
  imgList=new Array(5*2)
  for (i=0;i<10;i++){
    imgList[i]=new Image()
  }
  imgList[0].src="txt_biog.gif"
  imgList[1].src="txt_biog2.gif"
  
  imgList[2].src="txt_rese.gif"
  imgList[3].src="txt_rese2.gif"

  
  imgList[4].src="txt_teac.gif"
  imgList[5].src="txt_teac2.gif"

  
  imgList[6].src="txt_fyp.gif"
  imgList[7].src="txt_fyp2.gif"

  
  imgList[8].src="txt_othe.gif"
  imgList[9].src="txt_othe2.gif"

  function changeImage(dest,src){

  	document.images[dest].src=imgList[src].src
  	
  	return true
  	
  }

