var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-3330{';
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 fadeimages3330=new Array()

fadeimages3330 [0]=["https://illinois.edu/lb/files/2010/06/04/27369.jpg", "http://www.fightingillini.com/sports/m-golf/recaps/050111aad.html", "", ""];

fadeimages3330 [1]=["https://illinois.edu/lb/files/2010/06/04/27368.jpg", "http://www.fightingillini.com/sports/m-golf/recaps/060310aaf.html", "", ""];
var fadebgcolor3330="white"

////NO need to edit beyond here/////////////

var fadearray3330=new Array() //array to cache fadeshow instances
var fadeclear3330=new Array() //array to cache corresponding clearinterval pointers

var dom3330=(document.getElementById) //modern dom browsers
var iebrowser3330=document.all

function fadeshow3330(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck3330=pause
this.mouseovercheck3330=0
this.delay3330=delay
this.degree3330=10 //initial opacity degree (10%)
this.curimageindex3330=0
this.nextimageindex3330=1
fadearray3330[fadearray3330.length]=this
this.slideshowid3330=fadearray3330.length-1
this.canvasbase3330="canvas3330"+this.slideshowid3330
this.curcanvas3330=this.canvasbase3330+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages3330=theimages
this.imageborder3330=parseInt(borderwidth)
this.postimages3330=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages3330[p]=new Image()
this.postimages3330[p].src=theimages[p][0]
this.postimages3330[p].alt=theimages[p][3]
}

var fadewidth3330=fadewidth+this.imageborder3330*2
var fadeheight3330=fadeheight+this.imageborder3330*2

if (iebrowser3330&&dom3330||dom3330) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master3330'+this.slideshowid3330+'" class="slide-show-wrapper-3330" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase3330+'_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:'+fadebgcolor3330+'"></div><div id="'+this.canvasbase3330+'_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:'+fadebgcolor3330+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-3330-content-with-border" name="defaultslide3330'+this.slideshowid3330+'" src="'+this.postimages3330[0].src+'" alt="'+this.postimages3330[0].alt+'"></div>')

if (iebrowser3330&&dom3330||dom3330) //if IE5+ or modern browsers such as Firefox
this.startit3330()
else{
this.curimageindex3330++
setInterval("fadearray3330["+this.slideshowid3330+"].rotateimage3330()", this.delay3330)
}
}





function fadepic3330(obj3330){
if (obj3330.degree3330<100){
obj3330.degree3330+=10
if (obj3330.tempobj3330.filters&&obj3330.tempobj3330.filters[0]){
if (typeof obj3330.tempobj3330.filters[0].opacity=="number") //if IE6+
obj3330.tempobj3330.filters[0].opacity=obj3330.degree3330
else //else if IE5.5-
obj3330.tempobj3330.style.filter="alpha(opacity="+obj3330.degree3330+")"
}
else if (obj3330.tempobj3330.style.MozOpacity)
obj3330.tempobj3330.style.MozOpacity=obj3330.degree3330/101
else if (obj3330.tempobj3330.style.KhtmlOpacity)
obj3330.tempobj3330.style.KhtmlOpacity=obj3330.degree3330/100
else if (obj3330.tempobj3330.style.opacity&&!obj3330.tempobj3330.filters)
obj3330.tempobj3330.style.opacity=obj3330.degree3330/101
}
else{
clearInterval(fadeclear3330[obj3330.slideshowid3330])
obj3330.nextcanvas3330=(obj3330.curcanvas3330==obj3330.canvasbase3330+"_0")? obj3330.canvasbase3330+"_0" : obj3330.canvasbase3330+"_1"
obj3330.tempobj3330=iebrowser3330? iebrowser3330[obj3330.nextcanvas3330] : document.getElementById(obj3330.nextcanvas3330)
obj3330.populateslide3330(obj3330.tempobj3330, obj3330.nextimageindex3330)
obj3330.nextimageindex3330=(obj3330.nextimageindex3330<obj3330.postimages3330.length-1)? obj3330.nextimageindex3330+1 : 0
setTimeout("fadearray3330["+obj3330.slideshowid3330+"].rotateimage3330()", obj3330.delay3330)
}
}


fadeshow3330.prototype.populateslide3330=function(picobj3330, picindex3330){
var slideHTML3330=""
if (this.theimages3330[picindex3330][1]!="") //if associated link exists for image
slideHTML3330='<a href="'+this.theimages3330[picindex3330][1]+'" target="'+this.theimages3330[picindex3330][2]+'">'
slideHTML3330+='<img class="edu-il-ws-3330-content-with-border" src="'+this.postimages3330[picindex3330].src+'" alt="'+this.postimages3330[picindex3330].alt+'" border="'+this.imageborder3330+'px">'
if (this.theimages3330[picindex3330][1]!="") //if associated link exists for image
slideHTML3330+='</a>'
picobj3330.innerHTML=slideHTML3330
}


fadeshow3330.prototype.rotateimage3330=function(){
if (this.pausecheck3330==1) //if pause onMouseover enabled, cache object
var cacheobj3330=this
if (this.mouseovercheck3330==1)
setTimeout(function(){cacheobj3330.rotateimage3330()}, 100)
else if (iebrowser3330&&dom3330||dom3330){
this.resetit3330()
var crossobj3330=this.tempobj3330=iebrowser3330? iebrowser3330[this.curcanvas3330] : document.getElementById(this.curcanvas3330)
crossobj3330.style.zIndex++
fadeclear3330[this.slideshowid3330]=setInterval("fadepic3330(fadearray3330["+this.slideshowid3330+"])",50)
this.curcanvas3330=(this.curcanvas3330==this.canvasbase3330+"_0")? this.canvasbase3330+"_1" : this.canvasbase3330+"_0"
}
else{
var ns4imgobj3330=document.images['defaultslide3330'+this.slideshowid3330]
ns4imgobj3330.src=this.postimages3330[this.curimageindex3330].src
ms4imgobj3330.alt=this.postimages3330[this.curimageindex3330].alt
}
this.curimageindex3330=(this.curimageindex3330<this.postimages3330.length-1)? this.curimageindex3330+1 : 0
}

fadeshow3330.prototype.resetit3330=function(){
this.degree3330=10
var crossobj3330=iebrowser3330? iebrowser3330[this.curcanvas3330] : document.getElementById(this.curcanvas3330)
if (crossobj3330.filters&&crossobj3330.filters[0]){
if (typeof crossobj3330.filters[0].opacity=="number") //if IE6+
crossobj3330.filters(0).opacity=this.degree3330
else //else if IE5.5-
crossobj3330.style.filter="alpha(opacity="+this.degree3330+")"
}
else if (crossobj3330.style.MozOpacity)
crossobj3330.style.MozOpacity=this.degree3330/101
else if (crossobj3330.style.KhtmlOpacity)
crossobj3330.style.KhtmlOpacity=this.degree3330/100
else if (crossobj3330.style.opacity&&!crossobj3330.filters)
crossobj3330.style.opacity=this.degree3330/101
}


fadeshow3330.prototype.startit3330=function(){
var crossobj3330=iebrowser3330? iebrowser3330[this.curcanvas3330] : document.getElementById(this.curcanvas3330)
this.populateslide3330(crossobj3330, this.curimageindex3330)
if (this.pausecheck3330==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj3330=this
var crossobjcontainer3330=iebrowser3330? iebrowser3330["master3330"+this.slideshowid3330] : document.getElementById("master3330"+this.slideshowid3330)
crossobjcontainer3330.onmouseover=function(){cacheobj3330.mouseovercheck3330=1}
crossobjcontainer3330.onmouseout=function(){cacheobj3330.mouseovercheck3330=0}
}
this.rotateimage3330()
}
var delay = 8 * 1000;
new fadeshow3330 (fadeimages3330, 250, 250, 0, delay, 1, 'truefalse')

document.write("");

