/*****************************************\||       Fade Script Version 1.02        ||||  http://www.xs.mw/anarchos/fade.js    ||||              (c) 1999                 |||| ___________________________________   ||||                                       |||| Fade, hex, setbgColor functions by:   |||| Dak Phoenix > phoenix-archetypes.com  |||| ___________________________________   ||||                                       |||| Modifications for mouseover by:       |||| Anarchos    > i.am/Anarchos           |||| ___________________________________   |||| 	  					                 |||| Some sections based on scripts by     |||| The Shadow  > www.icon.co.za/~andrewk |||| ___________________________________   ||||                                       |||| Modified 3/15/01 for Mozilla 5        |||| compatibility.						 ||	||				  -- www.youngpup.net    |||| ___________________________________   ||||                                       ||||						                 |||| Questions/Comments/etc. ->		     ||||						                 |||| Please send any questions or comments |||| on the script to:			         ||	|| anarchos3@hotmail.com                 ||||					                     ||\*****************************************/document.onmouseover = domouseover;document.onmouseout = domouseout;function domouseover(e) {  if (!e) e = window.event  if (e) {	srcEl = e.srcElement ? e.srcElement : e.originalTarget.parentNode	if (srcEl && srcEl.className && srcEl.className.indexOf("fade") > -1 && srcEl.name != "") {		fadein(srcEl.name);      }   }}function domouseout(e) {  if (!e) e = window.event  if (e) {	srcEl = e.srcElement ? e.srcElement : e.originalTarget.parentNode	if (srcEl && srcEl.className && srcEl.className.indexOf("fade") > -1 && srcEl.name != "") {		fadeout(srcEl.name);      }   }}function makearray(n) {    this.length = n;    for(var i = 1; i <= n; i++)        this[i] = 0;    return this;}hexa = new makearray(16);for(var i = 0; i < 10; i++)    hexa[i] = i;hexa[10]="a"; hexa[11]="b"; hexa[12]="c";hexa[13]="d"; hexa[14]="e"; hexa[15]="f";function hex(i) {    if (i < 0)        return "00";    else if (i > 255)        return "ff";    else       return "" + hexa[Math.floor(i/16)] + hexa[i%16];}function setColor(r, g, b, element) {	  var hr = hex(r); var hg = hex(g); var hb = hex(b);      element.style.color = "#"+hr+hg+hb;}function fade(sr, sg, sb, er, eg, eb, step, direction, name){   for(var i = 0; i <= step; i++) {setTimeout("setColor(Math.floor(" +sr+ " *(( " +step+ " - " +i+ " )/ " +step+ " ) + " +er+ " * (" +i+ "/" +step+ ")),Math.floor(" +sg+ " * (( " +step+ " - " +i+ " )/ " +step+ " ) + " +eg+ " * (" +i+ "/" +step+ ")),Math.floor(" +sb+ " * ((" +step+ "-" +i+ ")/" +step+ ") + " +eb+ " * (" +i+ "/" +step+ ")),document.all?"+name+":document.links['"+name+"']);",i*step);    }}function fadeout(name) {    fade(255,255,255, 155,164,190, 20, 1, name);}function fadein(name) {    fade(155,164,190, 255,255,255, 12, 1, name);}/* i don't think these are even being used! -yp. function fadeIn2(id){	fade(255,255,255, 88,118,152, 25, 1, id);}function fadeOut2(id){	fade(88,118,152, 255,255,255, 29, 1, id);} */