var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1231{';
wsContentVar += '        width:1000px;';
wsContentVar += '        height:176px;';
wsContentVar += '        xxxborder:1px solid black;';
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 fadeimages1231=new Array()

fadeimages1231 [0]=["https://illinois.edu/lb/files/2011/05/06/33361.jpg", "", "", ""];
var fadebgcolor1231="white"

////NO need to edit beyond here/////////////

var fadearray1231=new Array() //array to cache fadeshow instances
var fadeclear1231=new Array() //array to cache corresponding clearinterval pointers

var dom1231=(document.getElementById) //modern dom browsers
var iebrowser1231=document.all

function fadeshow1231(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1231=pause
this.mouseovercheck1231=0
this.delay1231=delay
this.degree1231=10 //initial opacity degree (10%)
this.curimageindex1231=0
this.nextimageindex1231=1
fadearray1231[fadearray1231.length]=this
this.slideshowid1231=fadearray1231.length-1
this.canvasbase1231="canvas1231"+this.slideshowid1231
this.curcanvas1231=this.canvasbase1231+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1231=theimages
this.imageborder1231=parseInt(borderwidth)
this.postimages1231=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1231[p]=new Image()
this.postimages1231[p].src=theimages[p][0]
this.postimages1231[p].alt=theimages[p][3]
}

var fadewidth1231=fadewidth+this.imageborder1231*2
var fadeheight1231=fadeheight+this.imageborder1231*2

if (iebrowser1231&&dom1231||dom1231) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1231'+this.slideshowid1231+'" class="slide-show-wrapper-1231" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1231+'_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:'+fadebgcolor1231+'"></div><div id="'+this.canvasbase1231+'_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:'+fadebgcolor1231+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1231-content-with-border" name="defaultslide1231'+this.slideshowid1231+'" src="'+this.postimages1231[0].src+'" alt="'+this.postimages1231[0].alt+'"></div>')

if (iebrowser1231&&dom1231||dom1231) //if IE5+ or modern browsers such as Firefox
this.startit1231()
else{
this.curimageindex1231++
setInterval("fadearray1231["+this.slideshowid1231+"].rotateimage1231()", this.delay1231)
}
}





function fadepic1231(obj1231){
if (obj1231.degree1231<100){
obj1231.degree1231+=10
if (obj1231.tempobj1231.filters&&obj1231.tempobj1231.filters[0]){
if (typeof obj1231.tempobj1231.filters[0].opacity=="number") //if IE6+
obj1231.tempobj1231.filters[0].opacity=obj1231.degree1231
else //else if IE5.5-
obj1231.tempobj1231.style.filter="alpha(opacity="+obj1231.degree1231+")"
}
else if (obj1231.tempobj1231.style.MozOpacity)
obj1231.tempobj1231.style.MozOpacity=obj1231.degree1231/101
else if (obj1231.tempobj1231.style.KhtmlOpacity)
obj1231.tempobj1231.style.KhtmlOpacity=obj1231.degree1231/100
else if (obj1231.tempobj1231.style.opacity&&!obj1231.tempobj1231.filters)
obj1231.tempobj1231.style.opacity=obj1231.degree1231/101
}
else{
clearInterval(fadeclear1231[obj1231.slideshowid1231])
obj1231.nextcanvas1231=(obj1231.curcanvas1231==obj1231.canvasbase1231+"_0")? obj1231.canvasbase1231+"_0" : obj1231.canvasbase1231+"_1"
obj1231.tempobj1231=iebrowser1231? iebrowser1231[obj1231.nextcanvas1231] : document.getElementById(obj1231.nextcanvas1231)
obj1231.populateslide1231(obj1231.tempobj1231, obj1231.nextimageindex1231)
obj1231.nextimageindex1231=(obj1231.nextimageindex1231<obj1231.postimages1231.length-1)? obj1231.nextimageindex1231+1 : 0
setTimeout("fadearray1231["+obj1231.slideshowid1231+"].rotateimage1231()", obj1231.delay1231)
}
}


fadeshow1231.prototype.populateslide1231=function(picobj1231, picindex1231){
var slideHTML1231=""
if (this.theimages1231[picindex1231][1]!="") //if associated link exists for image
slideHTML1231='<a href="'+this.theimages1231[picindex1231][1]+'" target="'+this.theimages1231[picindex1231][2]+'">'
slideHTML1231+='<img class="edu-il-ws-1231-content-with-border" src="'+this.postimages1231[picindex1231].src+'" alt="'+this.postimages1231[picindex1231].alt+'" border="'+this.imageborder1231+'px">'
if (this.theimages1231[picindex1231][1]!="") //if associated link exists for image
slideHTML1231+='</a>'
picobj1231.innerHTML=slideHTML1231
}


fadeshow1231.prototype.rotateimage1231=function(){
if (this.pausecheck1231==1) //if pause onMouseover enabled, cache object
var cacheobj1231=this
if (this.mouseovercheck1231==1)
setTimeout(function(){cacheobj1231.rotateimage1231()}, 100)
else if (iebrowser1231&&dom1231||dom1231){
this.resetit1231()
var crossobj1231=this.tempobj1231=iebrowser1231? iebrowser1231[this.curcanvas1231] : document.getElementById(this.curcanvas1231)
crossobj1231.style.zIndex++
fadeclear1231[this.slideshowid1231]=setInterval("fadepic1231(fadearray1231["+this.slideshowid1231+"])",50)
this.curcanvas1231=(this.curcanvas1231==this.canvasbase1231+"_0")? this.canvasbase1231+"_1" : this.canvasbase1231+"_0"
}
else{
var ns4imgobj1231=document.images['defaultslide1231'+this.slideshowid1231]
ns4imgobj1231.src=this.postimages1231[this.curimageindex1231].src
ms4imgobj1231.alt=this.postimages1231[this.curimageindex1231].alt
}
this.curimageindex1231=(this.curimageindex1231<this.postimages1231.length-1)? this.curimageindex1231+1 : 0
}

fadeshow1231.prototype.resetit1231=function(){
this.degree1231=10
var crossobj1231=iebrowser1231? iebrowser1231[this.curcanvas1231] : document.getElementById(this.curcanvas1231)
if (crossobj1231.filters&&crossobj1231.filters[0]){
if (typeof crossobj1231.filters[0].opacity=="number") //if IE6+
crossobj1231.filters(0).opacity=this.degree1231
else //else if IE5.5-
crossobj1231.style.filter="alpha(opacity="+this.degree1231+")"
}
else if (crossobj1231.style.MozOpacity)
crossobj1231.style.MozOpacity=this.degree1231/101
else if (crossobj1231.style.KhtmlOpacity)
crossobj1231.style.KhtmlOpacity=this.degree1231/100
else if (crossobj1231.style.opacity&&!crossobj1231.filters)
crossobj1231.style.opacity=this.degree1231/101
}


fadeshow1231.prototype.startit1231=function(){
var crossobj1231=iebrowser1231? iebrowser1231[this.curcanvas1231] : document.getElementById(this.curcanvas1231)
this.populateslide1231(crossobj1231, this.curimageindex1231)
if (this.pausecheck1231==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1231=this
var crossobjcontainer1231=iebrowser1231? iebrowser1231["master1231"+this.slideshowid1231] : document.getElementById("master1231"+this.slideshowid1231)
crossobjcontainer1231.onmouseover=function(){cacheobj1231.mouseovercheck1231=1}
crossobjcontainer1231.onmouseout=function(){cacheobj1231.mouseovercheck1231=0}
}
this.rotateimage1231()
}
var delay = 7 * 1000;
new fadeshow1231 (fadeimages1231, 250, 250, 0, delay, 1, 'truefalse')

document.write("");

