/* 
	Mouse Processing Library Version 1.1c
	Last Updated: October 21, 1998
	Copyright 1998, 1999 by Sterling Computer Systems
	Web:   http://SCS-Inter.net
	Email: WebMaster@SCS-Inter.net

	This file cannot be redistributed or sold as part of any package without 
	explicit consent from Sterling Computer Systems - Webmaster@SCS-Inter.net
 
*/

      
// Begin Library

ns4 = (document.layers) ? true:false;
ie4 = (document.all) ? true:false;
ver4 = (ns4 || ie4);
isMac=(navigator.appVersion.indexOf("Mac")!=-1);

function MouseOver(imName,dir,over) {
	if (!document.images) {return};
	whichIm = document.images[imName];
	if (over) {whichIm.src = dir + "_over.gif"}
	else {whichIm.src = dir + ".gif"}
}

function MouseDown(imName,dir,press) {
	whichIm = document.images[imName];
	if (press) {whichIm.src = dir + "_down.gif"}
	else {whichIm.src = dir + ".gif"}
}


