Advanced customization

<!-- *** 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_Browser.js"></SCRIPT>
<!-- *** Swirling cursor trail (based on a script by Ozone, http://www.ozones.com) ***
      *** Featured on Website Abstraction: Free JavaScripts http://www.wsabstract.com) *** -->
<SCRIPT LANGUAGE="javascript" SRC="javascript/JSFX_Circle.js"></SCRIPT>
<SCRIPT LANGUAGE="javascript" TYPE="text/javascript">
<!--
function JSFX_StartEffects()
{
     
JSFX.Circle("images/my_image.gif", 16, 200, .1);
}

//-->
</SCRIPT>
<!-- *** END CUT - End Code *** -->

Put the following in the BODY TAG of your document

<BODY ....onLoad="JSFX_StartEffects()">

Advanced Customization
Param1: images/my_image.gif - The "ball" image for the trailer.
Param2: 16- The number of images in the circle (1 - n)
Param3: 200- The radius of the circle (10 - n)
Param4: .1- The speed/direction of the circle(-0.2 to +0.2 in increments of 0.01)

You can combine multiple JSFX.Circle() calls with different parameters to create multiple effects. (See the demo's)