var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-4272{';
wsContentVar += '        width:996px;';
wsContentVar += '        height:112px;';
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 fadeimages4272=new Array()

fadeimages4272 [0]=["https://illinois.edu/lb/files/2011/10/10/35578.jpg", "", "", ""];

fadeimages4272 [1]=["https://illinois.edu/lb/files/2011/11/07/36129.jpg", "", "", ""];

fadeimages4272 [2]=["https://illinois.edu/lb/files/2011/10/10/35579.jpg", "http://www.fightingillini.com/sports/w-gym/2012-ncaa-regional-central.html", "", ""];

fadeimages4272 [3]=["https://illinois.edu/lb/files/2011/09/13/35033.jpg", "https://apps.athletics.illinois.edu/illininewborn", "", ""];

fadeimages4272 [4]=["https://illinois.edu/lb/files/2011/11/01/35973.jpg", "http://ev11.evenue.net/cgi-bin/ncommerce3/SEGetEventList?groupCode=MB&amp;linkID=illinois&amp;shopperContext=&amp;caller=&amp;appCode=", "", ""];
var fadebgcolor4272="white"

////NO need to edit beyond here/////////////

var fadearray4272=new Array() //array to cache fadeshow instances
var fadeclear4272=new Array() //array to cache corresponding clearinterval pointers

var dom4272=(document.getElementById) //modern dom browsers
var iebrowser4272=document.all

function fadeshow4272(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck4272=pause
this.mouseovercheck4272=0
this.delay4272=delay
this.degree4272=10 //initial opacity degree (10%)
this.curimageindex4272=0
this.nextimageindex4272=1
fadearray4272[fadearray4272.length]=this
this.slideshowid4272=fadearray4272.length-1
this.canvasbase4272="canvas4272"+this.slideshowid4272
this.curcanvas4272=this.canvasbase4272+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages4272=theimages
this.imageborder4272=parseInt(borderwidth)
this.postimages4272=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages4272[p]=new Image()
this.postimages4272[p].src=theimages[p][0]
this.postimages4272[p].alt=theimages[p][3]
}

var fadewidth4272=fadewidth+this.imageborder4272*2
var fadeheight4272=fadeheight+this.imageborder4272*2

if (iebrowser4272&&dom4272||dom4272) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master4272'+this.slideshowid4272+'" class="slide-show-wrapper-4272" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase4272+'_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:'+fadebgcolor4272+'"></div><div id="'+this.canvasbase4272+'_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:'+fadebgcolor4272+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-4272-content-with-border" name="defaultslide4272'+this.slideshowid4272+'" src="'+this.postimages4272[0].src+'" alt="'+this.postimages4272[0].alt+'"></div>')

if (iebrowser4272&&dom4272||dom4272) //if IE5+ or modern browsers such as Firefox
this.startit4272()
else{
this.curimageindex4272++
setInterval("fadearray4272["+this.slideshowid4272+"].rotateimage4272()", this.delay4272)
}
}





function fadepic4272(obj4272){
if (obj4272.degree4272<100){
obj4272.degree4272+=10
if (obj4272.tempobj4272.filters&&obj4272.tempobj4272.filters[0]){
if (typeof obj4272.tempobj4272.filters[0].opacity=="number") //if IE6+
obj4272.tempobj4272.filters[0].opacity=obj4272.degree4272
else //else if IE5.5-
obj4272.tempobj4272.style.filter="alpha(opacity="+obj4272.degree4272+")"
}
else if (obj4272.tempobj4272.style.MozOpacity)
obj4272.tempobj4272.style.MozOpacity=obj4272.degree4272/101
else if (obj4272.tempobj4272.style.KhtmlOpacity)
obj4272.tempobj4272.style.KhtmlOpacity=obj4272.degree4272/100
else if (obj4272.tempobj4272.style.opacity&&!obj4272.tempobj4272.filters)
obj4272.tempobj4272.style.opacity=obj4272.degree4272/101
}
else{
clearInterval(fadeclear4272[obj4272.slideshowid4272])
obj4272.nextcanvas4272=(obj4272.curcanvas4272==obj4272.canvasbase4272+"_0")? obj4272.canvasbase4272+"_0" : obj4272.canvasbase4272+"_1"
obj4272.tempobj4272=iebrowser4272? iebrowser4272[obj4272.nextcanvas4272] : document.getElementById(obj4272.nextcanvas4272)
obj4272.populateslide4272(obj4272.tempobj4272, obj4272.nextimageindex4272)
obj4272.nextimageindex4272=(obj4272.nextimageindex4272<obj4272.postimages4272.length-1)? obj4272.nextimageindex4272+1 : 0
setTimeout("fadearray4272["+obj4272.slideshowid4272+"].rotateimage4272()", obj4272.delay4272)
}
}


fadeshow4272.prototype.populateslide4272=function(picobj4272, picindex4272){
var slideHTML4272=""
if (this.theimages4272[picindex4272][1]!="") //if associated link exists for image
slideHTML4272='<a href="'+this.theimages4272[picindex4272][1]+'" target="'+this.theimages4272[picindex4272][2]+'">'
slideHTML4272+='<img class="edu-il-ws-4272-content-with-border" src="'+this.postimages4272[picindex4272].src+'" alt="'+this.postimages4272[picindex4272].alt+'" border="'+this.imageborder4272+'px">'
if (this.theimages4272[picindex4272][1]!="") //if associated link exists for image
slideHTML4272+='</a>'
picobj4272.innerHTML=slideHTML4272
}


fadeshow4272.prototype.rotateimage4272=function(){
if (this.pausecheck4272==1) //if pause onMouseover enabled, cache object
var cacheobj4272=this
if (this.mouseovercheck4272==1)
setTimeout(function(){cacheobj4272.rotateimage4272()}, 100)
else if (iebrowser4272&&dom4272||dom4272){
this.resetit4272()
var crossobj4272=this.tempobj4272=iebrowser4272? iebrowser4272[this.curcanvas4272] : document.getElementById(this.curcanvas4272)
crossobj4272.style.zIndex++
fadeclear4272[this.slideshowid4272]=setInterval("fadepic4272(fadearray4272["+this.slideshowid4272+"])",50)
this.curcanvas4272=(this.curcanvas4272==this.canvasbase4272+"_0")? this.canvasbase4272+"_1" : this.canvasbase4272+"_0"
}
else{
var ns4imgobj4272=document.images['defaultslide4272'+this.slideshowid4272]
ns4imgobj4272.src=this.postimages4272[this.curimageindex4272].src
ms4imgobj4272.alt=this.postimages4272[this.curimageindex4272].alt
}
this.curimageindex4272=(this.curimageindex4272<this.postimages4272.length-1)? this.curimageindex4272+1 : 0
}

fadeshow4272.prototype.resetit4272=function(){
this.degree4272=10
var crossobj4272=iebrowser4272? iebrowser4272[this.curcanvas4272] : document.getElementById(this.curcanvas4272)
if (crossobj4272.filters&&crossobj4272.filters[0]){
if (typeof crossobj4272.filters[0].opacity=="number") //if IE6+
crossobj4272.filters(0).opacity=this.degree4272
else //else if IE5.5-
crossobj4272.style.filter="alpha(opacity="+this.degree4272+")"
}
else if (crossobj4272.style.MozOpacity)
crossobj4272.style.MozOpacity=this.degree4272/101
else if (crossobj4272.style.KhtmlOpacity)
crossobj4272.style.KhtmlOpacity=this.degree4272/100
else if (crossobj4272.style.opacity&&!crossobj4272.filters)
crossobj4272.style.opacity=this.degree4272/101
}


fadeshow4272.prototype.startit4272=function(){
var crossobj4272=iebrowser4272? iebrowser4272[this.curcanvas4272] : document.getElementById(this.curcanvas4272)
this.populateslide4272(crossobj4272, this.curimageindex4272)
if (this.pausecheck4272==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj4272=this
var crossobjcontainer4272=iebrowser4272? iebrowser4272["master4272"+this.slideshowid4272] : document.getElementById("master4272"+this.slideshowid4272)
crossobjcontainer4272.onmouseover=function(){cacheobj4272.mouseovercheck4272=1}
crossobjcontainer4272.onmouseout=function(){cacheobj4272.mouseovercheck4272=0}
}
this.rotateimage4272()
}
var delay = 7 * 1000;
new fadeshow4272 (fadeimages4272, 250, 250, 0, delay, 1, 'truefalse')

document.write("");

