function lightup(image)
{
	image.childNodes[0].src = image.childNodes[0].src.replace(/grey/g, "color");	
}

function turnoff(image)
{
	image.childNodes[0].src = image.childNodes[0].src.replace(/color/g, "grey");
}