To include this FX in your document you need to put the the following in the HEAD section of your document

<!-- *** BEGIN CUT - Start Code *** -->
<!-- (* Another free JavaScript © from JavaScript-FX.com *) -->
<SCRIPT LANGUAGE="javascript" SRC="javascript/JSFX_Layer.js"></SCRIPT>
<SCRIPT LANGUAGE="javascript" SRC="javascript/JSFX_Mouse.js"></SCRIPT>
<SCRIPT LANGUAGE="javascript" SRC="javascript/JSFX_Droplets.js"></SCRIPT>
<SCRIPT LANGUAGE="javascript" TYPE="text/javascript">
<!--
function JSFX_StartEffects()
{
      JSFX.Droplets(40, 0);
}
//-->
</SCRIPT>
<!-- *** END CUT - End Code *** -->

Put the following in the BODY TAG of your document

<BODY onLoad="JSFX_StartEffects()">

Customization.
Param1: 40 - The number of droplets in the effect.
Param2: 0 - The effect to create, e.g.

JSFX.Fire(40, 0); //Drop from cursor
JSFX.Fire(40, 1); //"Spray" from the Cursor
JSFX.Fire(40, 2); //"Launch" from the Cursor in the direction it moves.
JSFX.Fire(40, 3); //"Launch" from the Cursor in the opposite direction it moves.

Also See...
Using External ".js" Files
Combining Multiple Scripts.