var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1229{';
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 fadeimages1229=new Array()

fadeimages1229 [0]=["https://illinois.edu/lb/files/2010/02/08/24485.jpg", "", "", "think pink"];

fadeimages1229 [1]=["https://illinois.edu/lb/files/2009/12/11/23551.jpg", "", "", "mbk single game tix"];

fadeimages1229 [2]=["https://illinois.edu/lb/files/2009/11/02/22706.jpg", "http://www.fightingillini.com/sports/w-baskbl/spec-rel/101309aaa.html", "", "wbk tix"];

fadeimages1229 [3]=["https://illinois.edu/lb/files/2010/02/01/24368.jpg", "http://www.fightingillini.com/sports/m-footbl/spec-rel/020110aad.html", "", "Signing Day 2010"];
var fadebgcolor1229="white"

////NO need to edit beyond here/////////////

var fadearray1229=new Array() //array to cache fadeshow instances
var fadeclear1229=new Array() //array to cache corresponding clearinterval pointers

var dom1229=(document.getElementById) //modern dom browsers
var iebrowser1229=document.all

function fadeshow1229(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1229=pause
this.mouseovercheck1229=0
this.delay1229=delay
this.degree1229=10 //initial opacity degree (10%)
this.curimageindex1229=0
this.nextimageindex1229=1
fadearray1229[fadearray1229.length]=this
this.slideshowid1229=fadearray1229.length-1
this.canvasbase1229="canvas1229"+this.slideshowid1229
this.curcanvas1229=this.canvasbase1229+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1229=theimages
this.imageborder1229=parseInt(borderwidth)
this.postimages1229=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1229[p]=new Image()
this.postimages1229[p].src=theimages[p][0]
this.postimages1229[p].alt=theimages[p][3]
}

var fadewidth1229=fadewidth+this.imageborder1229*2
var fadeheight1229=fadeheight+this.imageborder1229*2

if (iebrowser1229&&dom1229||dom1229) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1229'+this.slideshowid1229+'" class="slide-show-wrapper-1229" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1229+'_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:'+fadebgcolor1229+'"></div><div id="'+this.canvasbase1229+'_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:'+fadebgcolor1229+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1229-content-with-border" name="defaultslide1229'+this.slideshowid1229+'" src="'+this.postimages1229[0].src+'" alt="'+this.postimages1229[0].alt+'"></div>')

if (iebrowser1229&&dom1229||dom1229) //if IE5+ or modern browsers such as Firefox
this.startit1229()
else{
this.curimageindex1229++
setInterval("fadearray1229["+this.slideshowid1229+"].rotateimage1229()", this.delay1229)
}
}





function fadepic1229(obj1229){
if (obj1229.degree1229<100){
obj1229.degree1229+=10
if (obj1229.tempobj1229.filters&&obj1229.tempobj1229.filters[0]){
if (typeof obj1229.tempobj1229.filters[0].opacity=="number") //if IE6+
obj1229.tempobj1229.filters[0].opacity=obj1229.degree1229
else //else if IE5.5-
obj1229.tempobj1229.style.filter="alpha(opacity="+obj1229.degree1229+")"
}
else if (obj1229.tempobj1229.style.MozOpacity)
obj1229.tempobj1229.style.MozOpacity=obj1229.degree1229/101
else if (obj1229.tempobj1229.style.KhtmlOpacity)
obj1229.tempobj1229.style.KhtmlOpacity=obj1229.degree1229/100
else if (obj1229.tempobj1229.style.opacity&&!obj1229.tempobj1229.filters)
obj1229.tempobj1229.style.opacity=obj1229.degree1229/101
}
else{
clearInterval(fadeclear1229[obj1229.slideshowid1229])
obj1229.nextcanvas1229=(obj1229.curcanvas1229==obj1229.canvasbase1229+"_0")? obj1229.canvasbase1229+"_0" : obj1229.canvasbase1229+"_1"
obj1229.tempobj1229=iebrowser1229? iebrowser1229[obj1229.nextcanvas1229] : document.getElementById(obj1229.nextcanvas1229)
obj1229.populateslide1229(obj1229.tempobj1229, obj1229.nextimageindex1229)
obj1229.nextimageindex1229=(obj1229.nextimageindex1229<obj1229.postimages1229.length-1)? obj1229.nextimageindex1229+1 : 0
setTimeout("fadearray1229["+obj1229.slideshowid1229+"].rotateimage1229()", obj1229.delay1229)
}
}


fadeshow1229.prototype.populateslide1229=function(picobj1229, picindex1229){
var slideHTML1229=""
if (this.theimages1229[picindex1229][1]!="") //if associated link exists for image
slideHTML1229='<a href="'+this.theimages1229[picindex1229][1]+'" target="'+this.theimages1229[picindex1229][2]+'">'
slideHTML1229+='<img class="edu-il-ws-1229-content-with-border" src="'+this.postimages1229[picindex1229].src+'" alt="'+this.postimages1229[picindex1229].alt+'" border="'+this.imageborder1229+'px">'
if (this.theimages1229[picindex1229][1]!="") //if associated link exists for image
slideHTML1229+='</a>'
picobj1229.innerHTML=slideHTML1229
}


fadeshow1229.prototype.rotateimage1229=function(){
if (this.pausecheck1229==1) //if pause onMouseover enabled, cache object
var cacheobj1229=this
if (this.mouseovercheck1229==1)
setTimeout(function(){cacheobj1229.rotateimage1229()}, 100)
else if (iebrowser1229&&dom1229||dom1229){
this.resetit1229()
var crossobj1229=this.tempobj1229=iebrowser1229? iebrowser1229[this.curcanvas1229] : document.getElementById(this.curcanvas1229)
crossobj1229.style.zIndex++
fadeclear1229[this.slideshowid1229]=setInterval("fadepic1229(fadearray1229["+this.slideshowid1229+"])",50)
this.curcanvas1229=(this.curcanvas1229==this.canvasbase1229+"_0")? this.canvasbase1229+"_1" : this.canvasbase1229+"_0"
}
else{
var ns4imgobj1229=document.images['defaultslide1229'+this.slideshowid1229]
ns4imgobj1229.src=this.postimages1229[this.curimageindex1229].src
ms4imgobj1229.alt=this.postimages1229[this.curimageindex1229].alt
}
this.curimageindex1229=(this.curimageindex1229<this.postimages1229.length-1)? this.curimageindex1229+1 : 0
}

fadeshow1229.prototype.resetit1229=function(){
this.degree1229=10
var crossobj1229=iebrowser1229? iebrowser1229[this.curcanvas1229] : document.getElementById(this.curcanvas1229)
if (crossobj1229.filters&&crossobj1229.filters[0]){
if (typeof crossobj1229.filters[0].opacity=="number") //if IE6+
crossobj1229.filters(0).opacity=this.degree1229
else //else if IE5.5-
crossobj1229.style.filter="alpha(opacity="+this.degree1229+")"
}
else if (crossobj1229.style.MozOpacity)
crossobj1229.style.MozOpacity=this.degree1229/101
else if (crossobj1229.style.KhtmlOpacity)
crossobj1229.style.KhtmlOpacity=this.degree1229/100
else if (crossobj1229.style.opacity&&!crossobj1229.filters)
crossobj1229.style.opacity=this.degree1229/101
}


fadeshow1229.prototype.startit1229=function(){
var crossobj1229=iebrowser1229? iebrowser1229[this.curcanvas1229] : document.getElementById(this.curcanvas1229)
this.populateslide1229(crossobj1229, this.curimageindex1229)
if (this.pausecheck1229==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1229=this
var crossobjcontainer1229=iebrowser1229? iebrowser1229["master1229"+this.slideshowid1229] : document.getElementById("master1229"+this.slideshowid1229)
crossobjcontainer1229.onmouseover=function(){cacheobj1229.mouseovercheck1229=1}
crossobjcontainer1229.onmouseout=function(){cacheobj1229.mouseovercheck1229=0}
}
this.rotateimage1229()
}
var delay = 8 * 1000;
new fadeshow1229 (fadeimages1229, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
