function over (obj)
{
	sPath = obj.src;
	sPath = sPath.replace(".gif","_o.gif");	
	obj.src = sPath;
}
function out (obj)
{
	sPath = obj.src;
	sPath = sPath.replace("_o.gif",".gif");	
	obj.src = sPath;
}