function RollIt(evnt)
	{
	if (evnt.type == 'mouseover')	x = 'S';
	else							x = 'P';
	
	thisimg = false;
	if (evnt.currentTarget)	thisimg = 	evnt.currentTarget;
	if (evnt.srcElement)	thisimg = 	evnt.srcElement;
	
	if (thisimg)	thisimg.src = rolly[thisimg.name + x].src;
	}

function StuffIt(t)
	{
	s = new Image();
	s.src = 'm/' + t + '.gif';
	return s;
	}
