// Image Swapper scripts for sidebar by Jonathan C. Nilson

function imgOver(tgt,basename) {
// Shows the mouseover image for the object "tgt" and the supplied string in basename.
	if (tgt && tgt.src) { // Verify the object is valid first!
		tgt.src = "./images/" + basename + "-o.gif";
	}
}

function imgOut(tgt,basename) {
// Shows the mouseout image for the object "tgt" and the supplied string in basename.
	if (tgt && tgt.src) { // Verify the object is valid first!
		tgt.src = "./images/" + basename + "-n.gif";
	}
}
