﻿function colorFade(a,c,d,e,f,h){var i,endrgb,er,eg,eb,step,rint,gint,bint,step;var j=document.getElementById(a);f=f||20;h=h||20;clearInterval(j.timer);endrgb=colorConv(e);er=endrgb[0];eg=endrgb[1];eb=endrgb[2];if(!j.r){i=colorConv(d);r=i[0];g=i[1];b=i[2];j.r=r;j.g=g;j.b=b}rint=Math.round(Math.abs(j.r-er)/f);gint=Math.round(Math.abs(j.g-eg)/f);bint=Math.round(Math.abs(j.b-eb)/f);if(rint==0){rint=1}if(gint==0){gint=1}if(bint==0){bint=1}j.step=1;j.timer=setInterval(function(){animateColor(a,c,f,er,eg,eb,rint,gint,bint)},h)}function animateColor(a,c,d,e,f,h,i,j,k){var l=document.getElementById(a);var m;if(l.step<=d){var r=l.r;var g=l.g;var b=l.b;if(r>=e){r=r-i}else{r=parseInt(r)+parseInt(i)}if(g>=f){g=g-j}else{g=parseInt(g)+parseInt(j)}if(b>=h){b=b-k}else{b=parseInt(b)+parseInt(k)}m='rgb('+r+','+g+','+b+')';if(c=='background'){l.style.backgroundColor=m}else if(c=='border'){l.style.borderColor=m}else{l.style.color=m}l.r=r;l.g=g;l.b=b;l.step=l.step+1}else{clearInterval(l.timer);m='rgb('+e+','+f+','+h+')';if(c=='background'){l.style.backgroundColor=m}else if(c=='border'){l.style.borderColor=m}else{l.style.color=m}}}function colorConv(a){var b=[parseInt(a.substring(0,2),16),parseInt(a.substring(2,4),16),parseInt(a.substring(4,6),16)];return b}
