function roll(img,type)
{
	if (type == "on")
		img.src = img.src.replace('_off','_on');
	else if (type == "off")
		img.src = img.src.replace('_on','_off');
}

