/*
 * ident "@(#)effects.js	1.1 00/08/27 23:09:38 - EDI web application"
 *
 * Copyright © 2000 Atlantic Technologies Inc.
 *
 * ATI javascript library
 *
 */


/****************************************************************************
 * For highlighting HREFs in the navigation frame
 */

function glow() {
	event.toElement.style.oldcolor = event.toElement.style.color;
	event.toElement.style.color = "#FF0000";
}

function noglow() {
	event.fromElement.style.color = event.fromElement.style.oldcolor;
}

