// JavaScript Documentfunction KW_s(r, g, b, el) {    d=document;hr=r.toString(16);hg=g.toString(16);hb=b.toString(16);	hr=(hr.length==1)?"0"+hr:hr;hg=(hg.length==1)?"0"+hg:hg;hb=(hb.length==1)?"0"+hb:hb;	if (d.getElementById) d.getElementById(el).style.color="#"+hr+hg+hb;}function KW_c(a,b,s,i) { return Math.floor(a*((s-i)/s)+b*(i/s)) }function KW_fade(r,g,b,e,n,l,s,o){    for(i=0;i<=s;i++)setTimeout("KW_s("+KW_c(r,e,s,i)+","+KW_c(g,n,s,i)+","+KW_c(b,l,s,i)+",'"+o+"');",i*s);}
