// JavaScript Document
function rollOver(id,img)
{
	var image;
	image = document.getElementById(id);
	image.src = img;
}