function movein(id,image,id2,description){
   document.getElementById(id).src=image
   document.getElementById(id2).innerHTML=description
}
function moveout(id,id2){
   document.getElementById(id).src="blank.jpg"
   document.getElementById(id2).innerHTML="Place mouse over the <b class=lnkedterm>blue</b> words to view image of example"
}
