/*** Light Image Switcher Lib -- Version 1.0 (06-08-2001) ***/// define the array (empty)lib_actions = new Array;// call as part of load event handlerfunction lib_preload(){	var im = new Image();	for (var i = 0; i < lib_actions.length; i++) {		im.src = lib_actions[i][1];		im.src = lib_actions[i][2];	}}// call as part of onmouseover/onmouseout event handlerfunction lib_switch(act_idx,act_kind){	var idx = lib_actions[act_idx][0];	var src = null;	if (act_kind == 'over') {		src = lib_actions[act_idx][2];	} else {		src = lib_actions[act_idx][1];	}	document.images[idx].src = src;}
