var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1328{';
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 fadeimages1328=new Array()

fadeimages1328 [0]=["https://illinois.edu/lb/files/2008/07/23/4356.jpg", "http://www.fightingillini.com/sports/m-xctrack/recaps/061210aaa.html", "", ""];
var fadebgcolor1328="white"

////NO need to edit beyond here/////////////

var fadearray1328=new Array() //array to cache fadeshow instances
var fadeclear1328=new Array() //array to cache corresponding clearinterval pointers

var dom1328=(document.getElementById) //modern dom browsers
var iebrowser1328=document.all

function fadeshow1328(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1328=pause
this.mouseovercheck1328=0
this.delay1328=delay
this.degree1328=10 //initial opacity degree (10%)
this.curimageindex1328=0
this.nextimageindex1328=1
fadearray1328[fadearray1328.length]=this
this.slideshowid1328=fadearray1328.length-1
this.canvasbase1328="canvas1328"+this.slideshowid1328
this.curcanvas1328=this.canvasbase1328+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1328=theimages
this.imageborder1328=parseInt(borderwidth)
this.postimages1328=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1328[p]=new Image()
this.postimages1328[p].src=theimages[p][0]
this.postimages1328[p].alt=theimages[p][3]
}

var fadewidth1328=fadewidth+this.imageborder1328*2
var fadeheight1328=fadeheight+this.imageborder1328*2

if (iebrowser1328&&dom1328||dom1328) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1328'+this.slideshowid1328+'" class="slide-show-wrapper-1328" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1328+'_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:'+fadebgcolor1328+'"></div><div id="'+this.canvasbase1328+'_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:'+fadebgcolor1328+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1328-content-with-border" name="defaultslide1328'+this.slideshowid1328+'" src="'+this.postimages1328[0].src+'" alt="'+this.postimages1328[0].alt+'"></div>')

if (iebrowser1328&&dom1328||dom1328) //if IE5+ or modern browsers such as Firefox
this.startit1328()
else{
this.curimageindex1328++
setInterval("fadearray1328["+this.slideshowid1328+"].rotateimage1328()", this.delay1328)
}
}





function fadepic1328(obj1328){
if (obj1328.degree1328<100){
obj1328.degree1328+=10
if (obj1328.tempobj1328.filters&&obj1328.tempobj1328.filters[0]){
if (typeof obj1328.tempobj1328.filters[0].opacity=="number") //if IE6+
obj1328.tempobj1328.filters[0].opacity=obj1328.degree1328
else //else if IE5.5-
obj1328.tempobj1328.style.filter="alpha(opacity="+obj1328.degree1328+")"
}
else if (obj1328.tempobj1328.style.MozOpacity)
obj1328.tempobj1328.style.MozOpacity=obj1328.degree1328/101
else if (obj1328.tempobj1328.style.KhtmlOpacity)
obj1328.tempobj1328.style.KhtmlOpacity=obj1328.degree1328/100
else if (obj1328.tempobj1328.style.opacity&&!obj1328.tempobj1328.filters)
obj1328.tempobj1328.style.opacity=obj1328.degree1328/101
}
else{
clearInterval(fadeclear1328[obj1328.slideshowid1328])
obj1328.nextcanvas1328=(obj1328.curcanvas1328==obj1328.canvasbase1328+"_0")? obj1328.canvasbase1328+"_0" : obj1328.canvasbase1328+"_1"
obj1328.tempobj1328=iebrowser1328? iebrowser1328[obj1328.nextcanvas1328] : document.getElementById(obj1328.nextcanvas1328)
obj1328.populateslide1328(obj1328.tempobj1328, obj1328.nextimageindex1328)
obj1328.nextimageindex1328=(obj1328.nextimageindex1328<obj1328.postimages1328.length-1)? obj1328.nextimageindex1328+1 : 0
setTimeout("fadearray1328["+obj1328.slideshowid1328+"].rotateimage1328()", obj1328.delay1328)
}
}


fadeshow1328.prototype.populateslide1328=function(picobj1328, picindex1328){
var slideHTML1328=""
if (this.theimages1328[picindex1328][1]!="") //if associated link exists for image
slideHTML1328='<a href="'+this.theimages1328[picindex1328][1]+'" target="'+this.theimages1328[picindex1328][2]+'">'
slideHTML1328+='<img class="edu-il-ws-1328-content-with-border" src="'+this.postimages1328[picindex1328].src+'" alt="'+this.postimages1328[picindex1328].alt+'" border="'+this.imageborder1328+'px">'
if (this.theimages1328[picindex1328][1]!="") //if associated link exists for image
slideHTML1328+='</a>'
picobj1328.innerHTML=slideHTML1328
}


fadeshow1328.prototype.rotateimage1328=function(){
if (this.pausecheck1328==1) //if pause onMouseover enabled, cache object
var cacheobj1328=this
if (this.mouseovercheck1328==1)
setTimeout(function(){cacheobj1328.rotateimage1328()}, 100)
else if (iebrowser1328&&dom1328||dom1328){
this.resetit1328()
var crossobj1328=this.tempobj1328=iebrowser1328? iebrowser1328[this.curcanvas1328] : document.getElementById(this.curcanvas1328)
crossobj1328.style.zIndex++
fadeclear1328[this.slideshowid1328]=setInterval("fadepic1328(fadearray1328["+this.slideshowid1328+"])",50)
this.curcanvas1328=(this.curcanvas1328==this.canvasbase1328+"_0")? this.canvasbase1328+"_1" : this.canvasbase1328+"_0"
}
else{
var ns4imgobj1328=document.images['defaultslide1328'+this.slideshowid1328]
ns4imgobj1328.src=this.postimages1328[this.curimageindex1328].src
ms4imgobj1328.alt=this.postimages1328[this.curimageindex1328].alt
}
this.curimageindex1328=(this.curimageindex1328<this.postimages1328.length-1)? this.curimageindex1328+1 : 0
}

fadeshow1328.prototype.resetit1328=function(){
this.degree1328=10
var crossobj1328=iebrowser1328? iebrowser1328[this.curcanvas1328] : document.getElementById(this.curcanvas1328)
if (crossobj1328.filters&&crossobj1328.filters[0]){
if (typeof crossobj1328.filters[0].opacity=="number") //if IE6+
crossobj1328.filters(0).opacity=this.degree1328
else //else if IE5.5-
crossobj1328.style.filter="alpha(opacity="+this.degree1328+")"
}
else if (crossobj1328.style.MozOpacity)
crossobj1328.style.MozOpacity=this.degree1328/101
else if (crossobj1328.style.KhtmlOpacity)
crossobj1328.style.KhtmlOpacity=this.degree1328/100
else if (crossobj1328.style.opacity&&!crossobj1328.filters)
crossobj1328.style.opacity=this.degree1328/101
}


fadeshow1328.prototype.startit1328=function(){
var crossobj1328=iebrowser1328? iebrowser1328[this.curcanvas1328] : document.getElementById(this.curcanvas1328)
this.populateslide1328(crossobj1328, this.curimageindex1328)
if (this.pausecheck1328==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1328=this
var crossobjcontainer1328=iebrowser1328? iebrowser1328["master1328"+this.slideshowid1328] : document.getElementById("master1328"+this.slideshowid1328)
crossobjcontainer1328.onmouseover=function(){cacheobj1328.mouseovercheck1328=1}
crossobjcontainer1328.onmouseout=function(){cacheobj1328.mouseovercheck1328=0}
}
this.rotateimage1328()
}
var delay = 7 * 1000;
new fadeshow1328 (fadeimages1328, 250, 250, 0, delay, 1, 'truefalse')

document.write("");

