// EXAMPLE IN HTML:

// <IMG NAME="splat1" STYLE="position:relative;top:4px;" HSPACE=2 SRC="img/bullet18.gif"

// WIDTH=18 HEIGHT=18 BORDER=0>

// <A HREF="whatever.html" onMouseover="dosplat('splat1')" onMouseout="dobullet('splat1')">Whatever</A>



// INIT (GLOBAL) VARIABLES

if (document.images) {

	var splatpic = new Image(18,18);

	var bulletpic = new Image(18,18);

}



// LOAD SPLAT BULLETS

function loadsplatimages(path)

{

	if (document.images) {

		splatpic.src = path + "splat18.gif";

		bulletpic.src = path + "bullet18.gif";

	}

}



// DO SPLAT

function dosplat(imgName)

{

	if (document.images)

		document[imgName].src = splatpic.src;

}



// DO BULLET

function dobullet(imgName)

{

	if (document.images)

		document[imgName].src = bulletpic.src;

}



