function RO(name, onhref, offhref)
{
	this.name = name;
	this.images = new Array();
	this.images[0] = new Image();
	this.images[0].src = offhref;
	this.images[1] = new Image();
	this.images[1].src = onhref;
}

function rollIt(img_name,type,state,sMessage) {
var theObj, thisObj;
	if (info && (state==1)) {
		allOff();
	}
	if  (document.images) {
		document.images[img_name].src = type.images[state].src;
		}
	window.status=sMessage;
}

