function mouseover(id, image){
	document.getElementById(id).src = image;
}

function mouseout(id, image){
	document.getElementById(id).src = image;
}