/* Script URL: http://www.scriptiny.com/2010/09/fading-slideshow-script/ License: http://creativecommons.org/licenses/by/3.0/us/ */ var TINY={}; function T$(i){return document.getElementById(i)} function T$$(e,p){return p.getElementsByTagName(e)} TINY.fader=function(){ function fade(n,p){this.n=n; this.init(p)} fade.prototype.init=function(p){ var s = T$(p.id); var u = this.u = T$$('li',s); var l = u.length; var i = this.l = this.c = this.z = 0; if(p.navid&&p.activeclass){this.g=T$$('li',T$(p.navid)); this.s=p.activeclass;this.is=p.inactiveclass;} s.style.overflow='hidden'; this.a=p.auto||0; this.p=p.resume||0; for(i;i= 100 && !v){p.o=0; p.style.opacity=0; p.style.filter='alpha(opacity=0)'} if(this.g){ for(var x = 0; x < this.l; x++){ this.g[x].className = (x == i ? this.s : this.is); } } p.si=setInterval(new Function(this.n+'.fade('+i+','+a+')'),20) }, fade.prototype.fade=function(i,a){ var p=this.u[i]; if(p.o>=100){ clearInterval(p.si); if((a||(this.a&&this.p))&&!this.u.ai){this.auto()} }else{ p.o+=5; p.style.opacity=p.o/100; p.style.filter='alpha(opacity='+p.o+')' } }; return{fade:fade} }();