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