var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1213';
wsContentVar += '{';
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 fadeimages1213=new Array()

fadeimages1213 [0]=["https://illinois.edu/lb/files/2009/11/06/22834.jpg", "http://www.fightingillini.com/sports/w-baskbl/spec-rel/101309aaa.html", "", "tix"];

fadeimages1213 [1]=["https://illinois.edu/lb/files/2009/08/24/21016.jpg", "", "", "awards"];

fadeimages1213 [2]=["https://illinois.edu/lb/files/2009/08/24/21015.jpg", "", "", "Wbk mast 1"];
var fadebgcolor1213="white"

////NO need to edit beyond here/////////////

var fadearray1213=new Array() //array to cache fadeshow instances
var fadeclear1213=new Array() //array to cache corresponding clearinterval pointers

var dom1213=(document.getElementById) //modern dom browsers
var iebrowser1213=document.all

function fadeshow1213(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1213=pause
this.mouseovercheck1213=0
this.delay1213=delay
this.degree1213=10 //initial opacity degree (10%)
this.curimageindex1213=0
this.nextimageindex1213=1
fadearray1213[fadearray1213.length]=this
this.slideshowid1213=fadearray1213.length-1
this.canvasbase1213="canvas1213"+this.slideshowid1213
this.curcanvas1213=this.canvasbase1213+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1213=theimages
this.imageborder1213=parseInt(borderwidth)
this.postimages1213=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1213[p]=new Image()
this.postimages1213[p].src=theimages[p][0]
this.postimages1213[p].alt=theimages[p][3]
}

var fadewidth1213=fadewidth+this.imageborder1213*2
var fadeheight1213=fadeheight+this.imageborder1213*2

if (iebrowser1213&&dom1213||dom1213) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1213'+this.slideshowid1213+'" class="slide-show-wrapper-1213" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1213+'_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:'+fadebgcolor1213+'"></div><div id="'+this.canvasbase1213+'_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:'+fadebgcolor1213+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1213-content-with-border" name="defaultslide1213'+this.slideshowid1213+'" src="'+this.postimages1213[0].src+'" alt="'+this.postimages1213[0].alt+'"></div>')

if (iebrowser1213&&dom1213||dom1213) //if IE5+ or modern browsers such as Firefox
this.startit1213()
else{
this.curimageindex1213++
setInterval("fadearray1213["+this.slideshowid1213+"].rotateimage1213()", this.delay1213)
}
}





function fadepic1213(obj1213){
if (obj1213.degree1213<100){
obj1213.degree1213+=10
if (obj1213.tempobj1213.filters&&obj1213.tempobj1213.filters[0]){
if (typeof obj1213.tempobj1213.filters[0].opacity=="number") //if IE6+
obj1213.tempobj1213.filters[0].opacity=obj1213.degree1213
else //else if IE5.5-
obj1213.tempobj1213.style.filter="alpha(opacity="+obj1213.degree1213+")"
}
else if (obj1213.tempobj1213.style.MozOpacity)
obj1213.tempobj1213.style.MozOpacity=obj1213.degree1213/101
else if (obj1213.tempobj1213.style.KhtmlOpacity)
obj1213.tempobj1213.style.KhtmlOpacity=obj1213.degree1213/100
else if (obj1213.tempobj1213.style.opacity&&!obj1213.tempobj1213.filters)
obj1213.tempobj1213.style.opacity=obj1213.degree1213/101
}
else{
clearInterval(fadeclear1213[obj1213.slideshowid1213])
obj1213.nextcanvas1213=(obj1213.curcanvas1213==obj1213.canvasbase1213+"_0")? obj1213.canvasbase1213+"_0" : obj1213.canvasbase1213+"_1"
obj1213.tempobj1213=iebrowser1213? iebrowser1213[obj1213.nextcanvas1213] : document.getElementById(obj1213.nextcanvas1213)
obj1213.populateslide1213(obj1213.tempobj1213, obj1213.nextimageindex1213)
obj1213.nextimageindex1213=(obj1213.nextimageindex1213<obj1213.postimages1213.length-1)? obj1213.nextimageindex1213+1 : 0
setTimeout("fadearray1213["+obj1213.slideshowid1213+"].rotateimage1213()", obj1213.delay1213)
}
}


fadeshow1213.prototype.populateslide1213=function(picobj1213, picindex1213){
var slideHTML1213=""
if (this.theimages1213[picindex1213][1]!="") //if associated link exists for image
slideHTML1213='<a href="'+this.theimages1213[picindex1213][1]+'" target="'+this.theimages1213[picindex1213][2]+'">'
slideHTML1213+='<img class="edu-il-ws-1213-content-with-border" src="'+this.postimages1213[picindex1213].src+'" alt="'+this.postimages1213[picindex1213].alt+'" border="'+this.imageborder1213+'px">'
if (this.theimages1213[picindex1213][1]!="") //if associated link exists for image
slideHTML1213+='</a>'
picobj1213.innerHTML=slideHTML1213
}


fadeshow1213.prototype.rotateimage1213=function(){
if (this.pausecheck1213==1) //if pause onMouseover enabled, cache object
var cacheobj1213=this
if (this.mouseovercheck1213==1)
setTimeout(function(){cacheobj1213.rotateimage1213()}, 100)
else if (iebrowser1213&&dom1213||dom1213){
this.resetit1213()
var crossobj1213=this.tempobj1213=iebrowser1213? iebrowser1213[this.curcanvas1213] : document.getElementById(this.curcanvas1213)
crossobj1213.style.zIndex++
fadeclear1213[this.slideshowid1213]=setInterval("fadepic1213(fadearray1213["+this.slideshowid1213+"])",50)
this.curcanvas1213=(this.curcanvas1213==this.canvasbase1213+"_0")? this.canvasbase1213+"_1" : this.canvasbase1213+"_0"
}
else{
var ns4imgobj1213=document.images['defaultslide1213'+this.slideshowid1213]
ns4imgobj1213.src=this.postimages1213[this.curimageindex1213].src
ms4imgobj1213.alt=this.postimages1213[this.curimageindex1213].alt
}
this.curimageindex1213=(this.curimageindex1213<this.postimages1213.length-1)? this.curimageindex1213+1 : 0
}

fadeshow1213.prototype.resetit1213=function(){
this.degree1213=10
var crossobj1213=iebrowser1213? iebrowser1213[this.curcanvas1213] : document.getElementById(this.curcanvas1213)
if (crossobj1213.filters&&crossobj1213.filters[0]){
if (typeof crossobj1213.filters[0].opacity=="number") //if IE6+
crossobj1213.filters(0).opacity=this.degree1213
else //else if IE5.5-
crossobj1213.style.filter="alpha(opacity="+this.degree1213+")"
}
else if (crossobj1213.style.MozOpacity)
crossobj1213.style.MozOpacity=this.degree1213/101
else if (crossobj1213.style.KhtmlOpacity)
crossobj1213.style.KhtmlOpacity=this.degree1213/100
else if (crossobj1213.style.opacity&&!crossobj1213.filters)
crossobj1213.style.opacity=this.degree1213/101
}


fadeshow1213.prototype.startit1213=function(){
var crossobj1213=iebrowser1213? iebrowser1213[this.curcanvas1213] : document.getElementById(this.curcanvas1213)
this.populateslide1213(crossobj1213, this.curimageindex1213)
if (this.pausecheck1213==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1213=this
var crossobjcontainer1213=iebrowser1213? iebrowser1213["master1213"+this.slideshowid1213] : document.getElementById("master1213"+this.slideshowid1213)
crossobjcontainer1213.onmouseover=function(){cacheobj1213.mouseovercheck1213=1}
crossobjcontainer1213.onmouseout=function(){cacheobj1213.mouseovercheck1213=0}
}
this.rotateimage1213()
}
var delay = 7 * 1000;
new fadeshow1213 (fadeimages1213, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
