var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1230{';
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 fadeimages1230=new Array()

fadeimages1230 [0]=["https://illinois.edu/lb/files/2008/06/19/3806.jpg", "", "", "Men's Basketball"];
var fadebgcolor1230="white"

////NO need to edit beyond here/////////////

var fadearray1230=new Array() //array to cache fadeshow instances
var fadeclear1230=new Array() //array to cache corresponding clearinterval pointers

var dom1230=(document.getElementById) //modern dom browsers
var iebrowser1230=document.all

function fadeshow1230(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1230=pause
this.mouseovercheck1230=0
this.delay1230=delay
this.degree1230=10 //initial opacity degree (10%)
this.curimageindex1230=0
this.nextimageindex1230=1
fadearray1230[fadearray1230.length]=this
this.slideshowid1230=fadearray1230.length-1
this.canvasbase1230="canvas1230"+this.slideshowid1230
this.curcanvas1230=this.canvasbase1230+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1230=theimages
this.imageborder1230=parseInt(borderwidth)
this.postimages1230=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1230[p]=new Image()
this.postimages1230[p].src=theimages[p][0]
this.postimages1230[p].alt=theimages[p][3]
}

var fadewidth1230=fadewidth+this.imageborder1230*2
var fadeheight1230=fadeheight+this.imageborder1230*2

if (iebrowser1230&&dom1230||dom1230) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1230'+this.slideshowid1230+'" class="slide-show-wrapper-1230" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1230+'_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:'+fadebgcolor1230+'"></div><div id="'+this.canvasbase1230+'_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:'+fadebgcolor1230+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1230-content-with-border" name="defaultslide1230'+this.slideshowid1230+'" src="'+this.postimages1230[0].src+'" alt="'+this.postimages1230[0].alt+'"></div>')

if (iebrowser1230&&dom1230||dom1230) //if IE5+ or modern browsers such as Firefox
this.startit1230()
else{
this.curimageindex1230++
setInterval("fadearray1230["+this.slideshowid1230+"].rotateimage1230()", this.delay1230)
}
}





function fadepic1230(obj1230){
if (obj1230.degree1230<100){
obj1230.degree1230+=10
if (obj1230.tempobj1230.filters&&obj1230.tempobj1230.filters[0]){
if (typeof obj1230.tempobj1230.filters[0].opacity=="number") //if IE6+
obj1230.tempobj1230.filters[0].opacity=obj1230.degree1230
else //else if IE5.5-
obj1230.tempobj1230.style.filter="alpha(opacity="+obj1230.degree1230+")"
}
else if (obj1230.tempobj1230.style.MozOpacity)
obj1230.tempobj1230.style.MozOpacity=obj1230.degree1230/101
else if (obj1230.tempobj1230.style.KhtmlOpacity)
obj1230.tempobj1230.style.KhtmlOpacity=obj1230.degree1230/100
else if (obj1230.tempobj1230.style.opacity&&!obj1230.tempobj1230.filters)
obj1230.tempobj1230.style.opacity=obj1230.degree1230/101
}
else{
clearInterval(fadeclear1230[obj1230.slideshowid1230])
obj1230.nextcanvas1230=(obj1230.curcanvas1230==obj1230.canvasbase1230+"_0")? obj1230.canvasbase1230+"_0" : obj1230.canvasbase1230+"_1"
obj1230.tempobj1230=iebrowser1230? iebrowser1230[obj1230.nextcanvas1230] : document.getElementById(obj1230.nextcanvas1230)
obj1230.populateslide1230(obj1230.tempobj1230, obj1230.nextimageindex1230)
obj1230.nextimageindex1230=(obj1230.nextimageindex1230<obj1230.postimages1230.length-1)? obj1230.nextimageindex1230+1 : 0
setTimeout("fadearray1230["+obj1230.slideshowid1230+"].rotateimage1230()", obj1230.delay1230)
}
}


fadeshow1230.prototype.populateslide1230=function(picobj1230, picindex1230){
var slideHTML1230=""
if (this.theimages1230[picindex1230][1]!="") //if associated link exists for image
slideHTML1230='<a href="'+this.theimages1230[picindex1230][1]+'" target="'+this.theimages1230[picindex1230][2]+'">'
slideHTML1230+='<img class="edu-il-ws-1230-content-with-border" src="'+this.postimages1230[picindex1230].src+'" alt="'+this.postimages1230[picindex1230].alt+'" border="'+this.imageborder1230+'px">'
if (this.theimages1230[picindex1230][1]!="") //if associated link exists for image
slideHTML1230+='</a>'
picobj1230.innerHTML=slideHTML1230
}


fadeshow1230.prototype.rotateimage1230=function(){
if (this.pausecheck1230==1) //if pause onMouseover enabled, cache object
var cacheobj1230=this
if (this.mouseovercheck1230==1)
setTimeout(function(){cacheobj1230.rotateimage1230()}, 100)
else if (iebrowser1230&&dom1230||dom1230){
this.resetit1230()
var crossobj1230=this.tempobj1230=iebrowser1230? iebrowser1230[this.curcanvas1230] : document.getElementById(this.curcanvas1230)
crossobj1230.style.zIndex++
fadeclear1230[this.slideshowid1230]=setInterval("fadepic1230(fadearray1230["+this.slideshowid1230+"])",50)
this.curcanvas1230=(this.curcanvas1230==this.canvasbase1230+"_0")? this.canvasbase1230+"_1" : this.canvasbase1230+"_0"
}
else{
var ns4imgobj1230=document.images['defaultslide1230'+this.slideshowid1230]
ns4imgobj1230.src=this.postimages1230[this.curimageindex1230].src
ms4imgobj1230.alt=this.postimages1230[this.curimageindex1230].alt
}
this.curimageindex1230=(this.curimageindex1230<this.postimages1230.length-1)? this.curimageindex1230+1 : 0
}

fadeshow1230.prototype.resetit1230=function(){
this.degree1230=10
var crossobj1230=iebrowser1230? iebrowser1230[this.curcanvas1230] : document.getElementById(this.curcanvas1230)
if (crossobj1230.filters&&crossobj1230.filters[0]){
if (typeof crossobj1230.filters[0].opacity=="number") //if IE6+
crossobj1230.filters(0).opacity=this.degree1230
else //else if IE5.5-
crossobj1230.style.filter="alpha(opacity="+this.degree1230+")"
}
else if (crossobj1230.style.MozOpacity)
crossobj1230.style.MozOpacity=this.degree1230/101
else if (crossobj1230.style.KhtmlOpacity)
crossobj1230.style.KhtmlOpacity=this.degree1230/100
else if (crossobj1230.style.opacity&&!crossobj1230.filters)
crossobj1230.style.opacity=this.degree1230/101
}


fadeshow1230.prototype.startit1230=function(){
var crossobj1230=iebrowser1230? iebrowser1230[this.curcanvas1230] : document.getElementById(this.curcanvas1230)
this.populateslide1230(crossobj1230, this.curimageindex1230)
if (this.pausecheck1230==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1230=this
var crossobjcontainer1230=iebrowser1230? iebrowser1230["master1230"+this.slideshowid1230] : document.getElementById("master1230"+this.slideshowid1230)
crossobjcontainer1230.onmouseover=function(){cacheobj1230.mouseovercheck1230=1}
crossobjcontainer1230.onmouseout=function(){cacheobj1230.mouseovercheck1230=0}
}
this.rotateimage1230()
}
var delay = 7 * 1000;
new fadeshow1230 (fadeimages1230, 250, 250, 0, delay, 1, 'truefalse')

document.write("");

