Forum Url:
http://http://soapsandmore.smfforfree.comThank you ladies for trying to help. I am going to post the javascript I got. Also, in the directions, it just said to put it in the body. Thanks for letting me know that putting it in the CSS code is a waste of time..because I definitely tried putting it several places in there! LOL
I'm going to try the header and footer again...perhaps I missed something. Anyway, thanks for taking a look at it. Again, any assistance will be greatly appreciated!

Also, I think a test site is a great idea and I will look on this forum to see if there is a tutorial on how to start one.
Ok, here is the javascript I copied/pasted from
http://www.hypergurl.com/halloweencursor.html I am acknowledging that I did not write this javascript and that I got it from the above-mentioned site. I do not know javascript and I am not taking credit for this person's work; just as when I get a stylesheet, I always put the original designer's name along with the title when I save it.

I apologize for getting the two javascripts sites mixed up...one was for the rain, and this very cool site called hypergurl.com is awesome and is where I got the trailing cursor code! She has tons of good information to offer! I suggest everyone check out her site! She makes it so easy for people like me who just don't have the time or, in my case, brain power to figure all this stuff out!
_____________________________________________________________
<script> /* Cross browser
cursor trailer script Copyright Brian Caputo (
bcaputo@icdc.com) distributed by
http://hypergurl.com (Hypergurl) Do not remove this copyright information! */
B=document.all; C=document.layers; T1=new Array("freda.gif",50,50,"freda.gif",50,50,"freda.gif",50,50,"freda.gif",50,50,"freda.gif",50,50,"freda.gif",50,50)
nos=parseInt(T1.length/3) rate=50 ie5fix1=0; ie5fix2=0; for (i=0;i<nos;i++){
createContainer("CUR"+i,i*10,i*10,i*3+1,i*3+2,"","<img
src='"+T1[i*3]+"' width="+T1[(i*3+1)]+" height="+T1[(i*3+2)]+"
border=0>")} function createContainer(N,Xp,Yp,W,H,At,HT,Op,St){ with (document){
write((!B) ? "<layer id='"+N+"' left="+Xp+" top="+Yp+"
width="+W+" height="+H : "<div id='"+N+"'"+"
style='position:absolute;left:"+Xp+"; top:"+Yp+"; width:"+W+";
height:"+H+"; "); if(St){ if (C) write(" style='"); write(St+";'
") } else write((B)?"'":""); write((At)? At+">"
: ">"); write((HT) ? HT : ""); if (!Op) closeContainer(N)
} } function closeContainer(){ document.write((B)?"</div>":"</layer>")
} function getXpos(N){ return (B) ? parseInt(B[N].style.left) : C[N].left } function
getYpos(N){ return (B) ? parseInt(B[N].style.top) : C[N].top } function moveContainer(N,DX,DY){
c=(B) ? B[N].style :C[N];c.left=DX;c.top=DY } function cycle(){ //if (IE5) if
(document.all&&window.print){ ie5fix1=document.body.scrollLeft; ie5fix2=document.body.scrollTop;
} for (i=0;i<(nos-1);i++){ moveContainer("CUR"+i,getXpos("CUR"+(i+1)),getYpos("CUR"+(i+1)))
} } function newPos(e){ moveContainer("CUR"+(nos-1),(B)?event.clientX+ie5fix1:e.pageX+2,(B)?event.clientY+ie5fix2:e.pageY+2
) } if(document.layers) document.captureEvents(Event.MOUSEMOVE) document.onmousemove=newPos
setInterval("cycle()",rate) </script>