function over(obj,img)
{
	obj.oldsrc = obj.src;
	obj.src = img;
}

function out(obj)
{
	obj.src = obj.oldsrc;
}

function after_load()
{
}

function show(name, img)
{
	document.images[name].src = img;
}
