var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1327{';
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 fadeimages1327=new Array()

fadeimages1327 [0]=["https://illinois.edu/lb/files/2009/08/24/21039.jpg", "", "", "all americans 10"];

fadeimages1327 [1]=["https://illinois.edu/lb/files/2009/08/24/21038.jpg", "", "", "Bizzarri National Champion"];

fadeimages1327 [2]=["https://illinois.edu/lb/files/2009/11/23/23179.jpg", "", "", "Bizzarri National Champion WXC"];
var fadebgcolor1327="white"

////NO need to edit beyond here/////////////

var fadearray1327=new Array() //array to cache fadeshow instances
var fadeclear1327=new Array() //array to cache corresponding clearinterval pointers

var dom1327=(document.getElementById) //modern dom browsers
var iebrowser1327=document.all

function fadeshow1327(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1327=pause
this.mouseovercheck1327=0
this.delay1327=delay
this.degree1327=10 //initial opacity degree (10%)
this.curimageindex1327=0
this.nextimageindex1327=1
fadearray1327[fadearray1327.length]=this
this.slideshowid1327=fadearray1327.length-1
this.canvasbase1327="canvas1327"+this.slideshowid1327
this.curcanvas1327=this.canvasbase1327+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1327=theimages
this.imageborder1327=parseInt(borderwidth)
this.postimages1327=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1327[p]=new Image()
this.postimages1327[p].src=theimages[p][0]
this.postimages1327[p].alt=theimages[p][3]
}

var fadewidth1327=fadewidth+this.imageborder1327*2
var fadeheight1327=fadeheight+this.imageborder1327*2

if (iebrowser1327&&dom1327||dom1327) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1327'+this.slideshowid1327+'" class="slide-show-wrapper-1327" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1327+'_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:'+fadebgcolor1327+'"></div><div id="'+this.canvasbase1327+'_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:'+fadebgcolor1327+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1327-content-with-border" name="defaultslide1327'+this.slideshowid1327+'" src="'+this.postimages1327[0].src+'" alt="'+this.postimages1327[0].alt+'"></div>')

if (iebrowser1327&&dom1327||dom1327) //if IE5+ or modern browsers such as Firefox
this.startit1327()
else{
this.curimageindex1327++
setInterval("fadearray1327["+this.slideshowid1327+"].rotateimage1327()", this.delay1327)
}
}





function fadepic1327(obj1327){
if (obj1327.degree1327<100){
obj1327.degree1327+=10
if (obj1327.tempobj1327.filters&&obj1327.tempobj1327.filters[0]){
if (typeof obj1327.tempobj1327.filters[0].opacity=="number") //if IE6+
obj1327.tempobj1327.filters[0].opacity=obj1327.degree1327
else //else if IE5.5-
obj1327.tempobj1327.style.filter="alpha(opacity="+obj1327.degree1327+")"
}
else if (obj1327.tempobj1327.style.MozOpacity)
obj1327.tempobj1327.style.MozOpacity=obj1327.degree1327/101
else if (obj1327.tempobj1327.style.KhtmlOpacity)
obj1327.tempobj1327.style.KhtmlOpacity=obj1327.degree1327/100
else if (obj1327.tempobj1327.style.opacity&&!obj1327.tempobj1327.filters)
obj1327.tempobj1327.style.opacity=obj1327.degree1327/101
}
else{
clearInterval(fadeclear1327[obj1327.slideshowid1327])
obj1327.nextcanvas1327=(obj1327.curcanvas1327==obj1327.canvasbase1327+"_0")? obj1327.canvasbase1327+"_0" : obj1327.canvasbase1327+"_1"
obj1327.tempobj1327=iebrowser1327? iebrowser1327[obj1327.nextcanvas1327] : document.getElementById(obj1327.nextcanvas1327)
obj1327.populateslide1327(obj1327.tempobj1327, obj1327.nextimageindex1327)
obj1327.nextimageindex1327=(obj1327.nextimageindex1327<obj1327.postimages1327.length-1)? obj1327.nextimageindex1327+1 : 0
setTimeout("fadearray1327["+obj1327.slideshowid1327+"].rotateimage1327()", obj1327.delay1327)
}
}


fadeshow1327.prototype.populateslide1327=function(picobj1327, picindex1327){
var slideHTML1327=""
if (this.theimages1327[picindex1327][1]!="") //if associated link exists for image
slideHTML1327='<a href="'+this.theimages1327[picindex1327][1]+'" target="'+this.theimages1327[picindex1327][2]+'">'
slideHTML1327+='<img class="edu-il-ws-1327-content-with-border" src="'+this.postimages1327[picindex1327].src+'" alt="'+this.postimages1327[picindex1327].alt+'" border="'+this.imageborder1327+'px">'
if (this.theimages1327[picindex1327][1]!="") //if associated link exists for image
slideHTML1327+='</a>'
picobj1327.innerHTML=slideHTML1327
}


fadeshow1327.prototype.rotateimage1327=function(){
if (this.pausecheck1327==1) //if pause onMouseover enabled, cache object
var cacheobj1327=this
if (this.mouseovercheck1327==1)
setTimeout(function(){cacheobj1327.rotateimage1327()}, 100)
else if (iebrowser1327&&dom1327||dom1327){
this.resetit1327()
var crossobj1327=this.tempobj1327=iebrowser1327? iebrowser1327[this.curcanvas1327] : document.getElementById(this.curcanvas1327)
crossobj1327.style.zIndex++
fadeclear1327[this.slideshowid1327]=setInterval("fadepic1327(fadearray1327["+this.slideshowid1327+"])",50)
this.curcanvas1327=(this.curcanvas1327==this.canvasbase1327+"_0")? this.canvasbase1327+"_1" : this.canvasbase1327+"_0"
}
else{
var ns4imgobj1327=document.images['defaultslide1327'+this.slideshowid1327]
ns4imgobj1327.src=this.postimages1327[this.curimageindex1327].src
ms4imgobj1327.alt=this.postimages1327[this.curimageindex1327].alt
}
this.curimageindex1327=(this.curimageindex1327<this.postimages1327.length-1)? this.curimageindex1327+1 : 0
}

fadeshow1327.prototype.resetit1327=function(){
this.degree1327=10
var crossobj1327=iebrowser1327? iebrowser1327[this.curcanvas1327] : document.getElementById(this.curcanvas1327)
if (crossobj1327.filters&&crossobj1327.filters[0]){
if (typeof crossobj1327.filters[0].opacity=="number") //if IE6+
crossobj1327.filters(0).opacity=this.degree1327
else //else if IE5.5-
crossobj1327.style.filter="alpha(opacity="+this.degree1327+")"
}
else if (crossobj1327.style.MozOpacity)
crossobj1327.style.MozOpacity=this.degree1327/101
else if (crossobj1327.style.KhtmlOpacity)
crossobj1327.style.KhtmlOpacity=this.degree1327/100
else if (crossobj1327.style.opacity&&!crossobj1327.filters)
crossobj1327.style.opacity=this.degree1327/101
}


fadeshow1327.prototype.startit1327=function(){
var crossobj1327=iebrowser1327? iebrowser1327[this.curcanvas1327] : document.getElementById(this.curcanvas1327)
this.populateslide1327(crossobj1327, this.curimageindex1327)
if (this.pausecheck1327==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1327=this
var crossobjcontainer1327=iebrowser1327? iebrowser1327["master1327"+this.slideshowid1327] : document.getElementById("master1327"+this.slideshowid1327)
crossobjcontainer1327.onmouseover=function(){cacheobj1327.mouseovercheck1327=1}
crossobjcontainer1327.onmouseout=function(){cacheobj1327.mouseovercheck1327=0}
}
this.rotateimage1327()
}
var delay = 7 * 1000;
new fadeshow1327 (fadeimages1327, 250, 250, 0, delay, 1, 'truefalse')

document.write("");

