how do you get the glitter trail from your mouse? :) x
By putting the following code (below) into 'Customize' then go to 'Edit Html' The paste it in there :) Hopefully it'll work, x
/****************************
* Tinkerbell Magic Sparkle *
*(c)2005-11 mf2fm web-design*
* http://www.mf2fm.com/rv *
* http://free-themes.info *
* DON'T EDIT BELOW THIS BOX *
****************************/
window.onload=function() { if (document.getElementById) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
document.body.appendChild(star[i]=rats);
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="rainbow")?newColour():colour;
star[c].style.visibility="visible";
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
setTimeout("sparkle()", 40);
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
stary[i]+=1+Math.random()*3;
star[i].style.top=stary[i]+"px";
star[i].style.left=starx[i]+"px";
star[i].style.visibility="hidden";
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
function update_tiny(i) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
tinyy[i]+=1+Math.random()*3;
tiny[i].style.top=tinyy[i]+"px";
tiny[i].style.left=tinyx[i]+"px";
tiny[i].style.visibility="hidden";
else tiny[i].style.visibility="hidden";
document.onmousemove=mouse;
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
if (typeof(self.pageYOffset)=="number") {
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
window.onresize=set_width;
if (document.documentElement && document.documentElement.clientWidth) {
if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
if (self.innerWidth>0 && self.innerWidth
if (self.innerHeight>0 && self.innerHeight
if (document.body.clientWidth) {
if (document.body.clientWidth>0 && document.body.clientWidth
if (document.body.clientHeight>0 && document.body.clientHeight
if (sw_min==999999 || sh_min==999999) {
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
c[1]=Math.floor(Math.random()*256);
c[2]=Math.floor(Math.random()*(256-c[1]/2));
c.sort(function(){return (0.5 - Math.random());});
return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");