<!--- script borrowed from http://www.kidsdomain.com/holiday/patrick/index.html......  Thanks dudes//-->


<!--THIS DID IT//-->
var browserName=navigator.appName; 
if (browserName=="Netscape")
{ 
 endscript;
}
else 




/*
Cross browser cursor trailer script
By Brian Caputo (bcaputo@icdc.com)
Visit Dynamic Depot @ www.icdc.com/~bcaputo
*/
B=document.all;C=document.layers;cC=new Array();
T1=new Array("./images/pat6.gif",52,65,"./images/pat5.gif",52,65,"./images/pat4.gif",52,65,"./images/pat3.gif",52,65,"./images/pat2.gif",52,65,"./images/pat1.gif",52,65)
nos=parseInt(T1.length/3)
rate=100;
for (i=0;i<nos;i++)
createCell('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 cycle(){for (i=0;i<(nos-1);i++){moveCell('CUR'+i,getXpos('CUR'+(i+1)),getYpos('CUR'+(i+1)))}}
function newPos(e){moveCell('CUR'+(nos-1),((B)?event.clientX+document.body.scrollLeft:e.pageX)+2,((B)?event.clientY+document.body.scrollTop:e.pageY)+2)}	//Here is the line I changed so both IE & NS move it over 2 pixels off the pointers tip thus allowing linkage!
if(document.layers)document.captureEvents(Event.MOUSEMOVE);
if (B)document.body.onscroll=newPos;
document.onmousemove=newPos;
window.MTIRQ=setInterval('cycle()',rate);

function createCell(N, Xp, Yp, W, H, A, Ht, BG, O, S) {
    with (document) {
        (C) ? write("<layer name='" + N + "' left=" + Xp + " top=" + Yp + " width=" + W + " height=" + H) : write("<div id='" + N + "' style='position:absolute; left:" + Xp + "; top:" + Yp + "; width:" + W + "; height:" + H);
        if (BG) {
            X = (C) ? " BGColor=" : "; background-color:";
            write(X + BG);
        }
        if (S) {
            write((C) ? " style=' " + S + "'" : "; " + S + "'");
        }
        if (B && !S) {
            write("'");
        }
        write((A) ? " " + A + ">" : ">");
        write(Ht);
    }
    if (!O) {
        closeCell();
    }
    cC[cC.length] = N;
    XX = eval("window." + N + "=getCell(N)");
    if (B) {
        XX.moveTo = moveTo;
        XX.moveBy = moveBy;
    }
    XX.innerHTML = Ht;
    XX.id = N;
    eval(getCell(N).refresh = refresh);
}
;

function moveCell(N, Xp, Yp) {
    D = getCell(N);
    D.left = Xp;
    D.top = Yp;
}
;

function getYpos(N) {
    return (parseInt(getCell(N).top));
}
;

function getXpos(N) {
    return (parseInt(getCell(N).left));
}
;

function closeCell() {
    document.write((B) ? "</div>" : "</layer>");
}
;

function getCell(N) {
    D = (C) ? C[N] : B[N].style;
    if (D == null && C) {
        rr = C.length;
        for (i = 0; i < rr; i++) {
            D = C[i].document.layers;
            if (D) {
                D = D[N];
            }
            if (D) {
                return D;
            }
        }
    }
    return D;
}


function refresh() {
    if (B) {
        document.all[this.id].innerHTML = this.innerHTML;
    }
}

