var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-2738{';
wsContentVar += '        width:383px;';
wsContentVar += '        height:90px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-2738-content-with-border{';
wsContentVar += '   height:90px;';
wsContentVar += '   width:383px;';
wsContentVar += '}';
wsStyleVar.setAttribute('type', 'text/css');
if (wsStyleVar.styleSheet)
{   // IE
    wsStyleVar.styleSheet.cssText = wsContentVar;
}
else
{                // the world
    var tt1 = document.createTextNode(wsContentVar);
    wsStyleVar.appendChild(tt1);
}
var wsHeadVar = document.getElementsByTagName('head')[0];
wsHeadVar.appendChild(wsStyleVar);
document.write("");

var fadeimages2738=new Array()

fadeimages2738 [0]=["https://illinois.edu/lb/files/2009/12/11/23556.jpg", "", "", "Baby in Crib"];

fadeimages2738 [1]=["https://illinois.edu/lb/files/2009/12/11/23547.jpg", "", "", "Eyes looking up"];

fadeimages2738 [2]=["https://illinois.edu/lb/files/2009/12/14/23639.jpg", "", "", "Girl with Yellow Flower"];

fadeimages2738 [3]=["https://illinois.edu/lb/files/2009/12/11/23549.jpg", "", "", "Hand in Red  Paint"];

fadeimages2738 [4]=["https://illinois.edu/lb/files/2009/12/11/23558.jpg", "", "", "Kids Looking at Glass Bottle"];
var fadebgcolor2738="white"

////NO need to edit beyond here/////////////

var fadearray2738=new Array() //array to cache fadeshow instances
var fadeclear2738=new Array() //array to cache corresponding clearinterval pointers

var dom2738=(document.getElementById) //modern dom browsers
var iebrowser2738=document.all

function fadeshow2738(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck2738=pause
this.mouseovercheck2738=0
this.delay2738=delay
this.degree2738=10 //initial opacity degree (10%)
this.curimageindex2738=0
this.nextimageindex2738=1
fadearray2738[fadearray2738.length]=this
this.slideshowid2738=fadearray2738.length-1
this.canvasbase2738="canvas2738"+this.slideshowid2738
this.curcanvas2738=this.canvasbase2738+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages2738=theimages
this.imageborder2738=parseInt(borderwidth)
this.postimages2738=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages2738[p]=new Image()
this.postimages2738[p].src=theimages[p][0]
this.postimages2738[p].alt=theimages[p][3]
}

var fadewidth2738=fadewidth+this.imageborder2738*2
var fadeheight2738=fadeheight+this.imageborder2738*2

if (iebrowser2738&&dom2738||dom2738) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master2738'+this.slideshowid2738+'" class="slide-show-wrapper-2738" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase2738+'_0" style="position:absolute;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor2738+'"></div><div id="'+this.canvasbase2738+'_1" style="position:absolute;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor2738+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-2738-content-with-border" name="defaultslide2738'+this.slideshowid2738+'" src="'+this.postimages2738[0].src+'" alt="'+this.postimages2738[0].alt+'"></div>')

if (iebrowser2738&&dom2738||dom2738) //if IE5+ or modern browsers such as Firefox
this.startit2738()
else{
this.curimageindex2738++
setInterval("fadearray2738["+this.slideshowid2738+"].rotateimage2738()", this.delay2738)
}
}





function fadepic2738(obj2738){
if (obj2738.degree2738<100){
obj2738.degree2738+=10
if (obj2738.tempobj2738.filters&&obj2738.tempobj2738.filters[0]){
if (typeof obj2738.tempobj2738.filters[0].opacity=="number") //if IE6+
obj2738.tempobj2738.filters[0].opacity=obj2738.degree2738
else //else if IE5.5-
obj2738.tempobj2738.style.filter="alpha(opacity="+obj2738.degree2738+")"
}
else if (obj2738.tempobj2738.style.MozOpacity)
obj2738.tempobj2738.style.MozOpacity=obj2738.degree2738/101
else if (obj2738.tempobj2738.style.KhtmlOpacity)
obj2738.tempobj2738.style.KhtmlOpacity=obj2738.degree2738/100
else if (obj2738.tempobj2738.style.opacity&&!obj2738.tempobj2738.filters)
obj2738.tempobj2738.style.opacity=obj2738.degree2738/101
}
else{
clearInterval(fadeclear2738[obj2738.slideshowid2738])
obj2738.nextcanvas2738=(obj2738.curcanvas2738==obj2738.canvasbase2738+"_0")? obj2738.canvasbase2738+"_0" : obj2738.canvasbase2738+"_1"
obj2738.tempobj2738=iebrowser2738? iebrowser2738[obj2738.nextcanvas2738] : document.getElementById(obj2738.nextcanvas2738)
obj2738.populateslide2738(obj2738.tempobj2738, obj2738.nextimageindex2738)
obj2738.nextimageindex2738=(obj2738.nextimageindex2738<obj2738.postimages2738.length-1)? obj2738.nextimageindex2738+1 : 0
setTimeout("fadearray2738["+obj2738.slideshowid2738+"].rotateimage2738()", obj2738.delay2738)
}
}


fadeshow2738.prototype.populateslide2738=function(picobj2738, picindex2738){
var slideHTML2738=""
if (this.theimages2738[picindex2738][1]!="") //if associated link exists for image
slideHTML2738='<a href="'+this.theimages2738[picindex2738][1]+'" target="'+this.theimages2738[picindex2738][2]+'">'
slideHTML2738+='<img class="edu-il-ws-2738-content-with-border" src="'+this.postimages2738[picindex2738].src+'" alt="'+this.postimages2738[picindex2738].alt+'" border="'+this.imageborder2738+'px">'
if (this.theimages2738[picindex2738][1]!="") //if associated link exists for image
slideHTML2738+='</a>'
picobj2738.innerHTML=slideHTML2738
}


fadeshow2738.prototype.rotateimage2738=function(){
if (this.pausecheck2738==1) //if pause onMouseover enabled, cache object
var cacheobj2738=this
if (this.mouseovercheck2738==1)
setTimeout(function(){cacheobj2738.rotateimage2738()}, 100)
else if (iebrowser2738&&dom2738||dom2738){
this.resetit2738()
var crossobj2738=this.tempobj2738=iebrowser2738? iebrowser2738[this.curcanvas2738] : document.getElementById(this.curcanvas2738)
crossobj2738.style.zIndex++
fadeclear2738[this.slideshowid2738]=setInterval("fadepic2738(fadearray2738["+this.slideshowid2738+"])",50)
this.curcanvas2738=(this.curcanvas2738==this.canvasbase2738+"_0")? this.canvasbase2738+"_1" : this.canvasbase2738+"_0"
}
else{
var ns4imgobj2738=document.images['defaultslide2738'+this.slideshowid2738]
ns4imgobj2738.src=this.postimages2738[this.curimageindex2738].src
ms4imgobj2738.alt=this.postimages2738[this.curimageindex2738].alt
}
this.curimageindex2738=(this.curimageindex2738<this.postimages2738.length-1)? this.curimageindex2738+1 : 0
}

fadeshow2738.prototype.resetit2738=function(){
this.degree2738=10
var crossobj2738=iebrowser2738? iebrowser2738[this.curcanvas2738] : document.getElementById(this.curcanvas2738)
if (crossobj2738.filters&&crossobj2738.filters[0]){
if (typeof crossobj2738.filters[0].opacity=="number") //if IE6+
crossobj2738.filters(0).opacity=this.degree2738
else //else if IE5.5-
crossobj2738.style.filter="alpha(opacity="+this.degree2738+")"
}
else if (crossobj2738.style.MozOpacity)
crossobj2738.style.MozOpacity=this.degree2738/101
else if (crossobj2738.style.KhtmlOpacity)
crossobj2738.style.KhtmlOpacity=this.degree2738/100
else if (crossobj2738.style.opacity&&!crossobj2738.filters)
crossobj2738.style.opacity=this.degree2738/101
}


fadeshow2738.prototype.startit2738=function(){
var crossobj2738=iebrowser2738? iebrowser2738[this.curcanvas2738] : document.getElementById(this.curcanvas2738)
this.populateslide2738(crossobj2738, this.curimageindex2738)
if (this.pausecheck2738==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj2738=this
var crossobjcontainer2738=iebrowser2738? iebrowser2738["master2738"+this.slideshowid2738] : document.getElementById("master2738"+this.slideshowid2738)
crossobjcontainer2738.onmouseover=function(){cacheobj2738.mouseovercheck2738=1}
crossobjcontainer2738.onmouseout=function(){cacheobj2738.mouseovercheck2738=0}
}
this.rotateimage2738()
}
var delay = 60 * 1000;
new fadeshow2738 (fadeimages2738, 250, 250, 0, delay, 1, 'truetrue')

document.write("");

