// JavaScript Document
function mouseOver(id, imgSRC){
	var elm = document.getElementById? document.getElementById(id): document.all? document.all[id]: null;
		elm.src = imgSRC;
}
