// JavaScript Document
function callimageover(id)
{
	document.getElementById(id).src = "images/" + id + ".jpg";
}
function callimagedown(id,img)
{
	document.getElementById(id).src = "images/" + img + ".jpg";
}