defaultStatus = "";

function rollOver(normal, hover, text) {
	if (document.images) {
		this.normal = new Image();
		this.normal.src = normal;
		this.hover = new Image();
		this.hover.src = hover;
		this.text = text;
	}
}

function on(name) {
	if (document.images) {
		eval("document.images['" + name + "'].src = " + name + ".hover.src;");
	}
}

function off(name) {
	if (document.images)
		eval("document.images['" + name + "'].src = " + name + ".normal.src;");
}

