var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1781{';
wsContentVar += '        width:514px;';
wsContentVar += '        height:207px;';
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 fadeimages1781=new Array()

fadeimages1781 [0]=["https://illinois.edu/lb/files/2009/08/13/20733.jpg", "", "", "Top Ten Public University"];

fadeimages1781 [1]=["https://illinois.edu/lb/files/2009/08/13/20732.jpg", "", "", "30 First Team Academic All-Americans"];

fadeimages1781 [2]=["https://illinois.edu/lb/files/2009/08/13/20731.jpg", "", "", "16 Postgrad Scholarships"];

fadeimages1781 [3]=["https://illinois.edu/lb/files/2009/08/13/20730.jpg", "", "", "7 NFF Scholar-Athletes"];

fadeimages1781 [4]=["https://illinois.edu/lb/files/2009/08/13/20729.jpg", "", "", "2 NCAA Silver Anniversary Awards"];

fadeimages1781 [5]=["https://illinois.edu/lb/files/2009/08/13/20728.jpg", "", "", "CHAMPS Lifetime Achievement"];

fadeimages1781 [6]=["https://illinois.edu/lb/files/2009/08/13/20727.jpg", "", "", "3100+ Community Hours"];
var fadebgcolor1781="white"

////NO need to edit beyond here/////////////

var fadearray1781=new Array() //array to cache fadeshow instances
var fadeclear1781=new Array() //array to cache corresponding clearinterval pointers

var dom1781=(document.getElementById) //modern dom browsers
var iebrowser1781=document.all

function fadeshow1781(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1781=pause
this.mouseovercheck1781=0
this.delay1781=delay
this.degree1781=10 //initial opacity degree (10%)
this.curimageindex1781=0
this.nextimageindex1781=1
fadearray1781[fadearray1781.length]=this
this.slideshowid1781=fadearray1781.length-1
this.canvasbase1781="canvas1781"+this.slideshowid1781
this.curcanvas1781=this.canvasbase1781+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1781=theimages
this.imageborder1781=parseInt(borderwidth)
this.postimages1781=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1781[p]=new Image()
this.postimages1781[p].src=theimages[p][0]
this.postimages1781[p].alt=theimages[p][3]
}

var fadewidth1781=fadewidth+this.imageborder1781*2
var fadeheight1781=fadeheight+this.imageborder1781*2

if (iebrowser1781&&dom1781||dom1781) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1781'+this.slideshowid1781+'" class="slide-show-wrapper-1781" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1781+'_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:'+fadebgcolor1781+'"></div><div id="'+this.canvasbase1781+'_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:'+fadebgcolor1781+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1781-content-with-border" name="defaultslide1781'+this.slideshowid1781+'" src="'+this.postimages1781[0].src+'" alt="'+this.postimages1781[0].alt+'"></div>')

if (iebrowser1781&&dom1781||dom1781) //if IE5+ or modern browsers such as Firefox
this.startit1781()
else{
this.curimageindex1781++
setInterval("fadearray1781["+this.slideshowid1781+"].rotateimage1781()", this.delay1781)
}
}





function fadepic1781(obj1781){
if (obj1781.degree1781<100){
obj1781.degree1781+=10
if (obj1781.tempobj1781.filters&&obj1781.tempobj1781.filters[0]){
if (typeof obj1781.tempobj1781.filters[0].opacity=="number") //if IE6+
obj1781.tempobj1781.filters[0].opacity=obj1781.degree1781
else //else if IE5.5-
obj1781.tempobj1781.style.filter="alpha(opacity="+obj1781.degree1781+")"
}
else if (obj1781.tempobj1781.style.MozOpacity)
obj1781.tempobj1781.style.MozOpacity=obj1781.degree1781/101
else if (obj1781.tempobj1781.style.KhtmlOpacity)
obj1781.tempobj1781.style.KhtmlOpacity=obj1781.degree1781/100
else if (obj1781.tempobj1781.style.opacity&&!obj1781.tempobj1781.filters)
obj1781.tempobj1781.style.opacity=obj1781.degree1781/101
}
else{
clearInterval(fadeclear1781[obj1781.slideshowid1781])
obj1781.nextcanvas1781=(obj1781.curcanvas1781==obj1781.canvasbase1781+"_0")? obj1781.canvasbase1781+"_0" : obj1781.canvasbase1781+"_1"
obj1781.tempobj1781=iebrowser1781? iebrowser1781[obj1781.nextcanvas1781] : document.getElementById(obj1781.nextcanvas1781)
obj1781.populateslide1781(obj1781.tempobj1781, obj1781.nextimageindex1781)
obj1781.nextimageindex1781=(obj1781.nextimageindex1781<obj1781.postimages1781.length-1)? obj1781.nextimageindex1781+1 : 0
setTimeout("fadearray1781["+obj1781.slideshowid1781+"].rotateimage1781()", obj1781.delay1781)
}
}


fadeshow1781.prototype.populateslide1781=function(picobj1781, picindex1781){
var slideHTML1781=""
if (this.theimages1781[picindex1781][1]!="") //if associated link exists for image
slideHTML1781='<a href="'+this.theimages1781[picindex1781][1]+'" target="'+this.theimages1781[picindex1781][2]+'">'
slideHTML1781+='<img class="edu-il-ws-1781-content-with-border" src="'+this.postimages1781[picindex1781].src+'" alt="'+this.postimages1781[picindex1781].alt+'" border="'+this.imageborder1781+'px">'
if (this.theimages1781[picindex1781][1]!="") //if associated link exists for image
slideHTML1781+='</a>'
picobj1781.innerHTML=slideHTML1781
}


fadeshow1781.prototype.rotateimage1781=function(){
if (this.pausecheck1781==1) //if pause onMouseover enabled, cache object
var cacheobj1781=this
if (this.mouseovercheck1781==1)
setTimeout(function(){cacheobj1781.rotateimage1781()}, 100)
else if (iebrowser1781&&dom1781||dom1781){
this.resetit1781()
var crossobj1781=this.tempobj1781=iebrowser1781? iebrowser1781[this.curcanvas1781] : document.getElementById(this.curcanvas1781)
crossobj1781.style.zIndex++
fadeclear1781[this.slideshowid1781]=setInterval("fadepic1781(fadearray1781["+this.slideshowid1781+"])",50)
this.curcanvas1781=(this.curcanvas1781==this.canvasbase1781+"_0")? this.canvasbase1781+"_1" : this.canvasbase1781+"_0"
}
else{
var ns4imgobj1781=document.images['defaultslide1781'+this.slideshowid1781]
ns4imgobj1781.src=this.postimages1781[this.curimageindex1781].src
ms4imgobj1781.alt=this.postimages1781[this.curimageindex1781].alt
}
this.curimageindex1781=(this.curimageindex1781<this.postimages1781.length-1)? this.curimageindex1781+1 : 0
}

fadeshow1781.prototype.resetit1781=function(){
this.degree1781=10
var crossobj1781=iebrowser1781? iebrowser1781[this.curcanvas1781] : document.getElementById(this.curcanvas1781)
if (crossobj1781.filters&&crossobj1781.filters[0]){
if (typeof crossobj1781.filters[0].opacity=="number") //if IE6+
crossobj1781.filters(0).opacity=this.degree1781
else //else if IE5.5-
crossobj1781.style.filter="alpha(opacity="+this.degree1781+")"
}
else if (crossobj1781.style.MozOpacity)
crossobj1781.style.MozOpacity=this.degree1781/101
else if (crossobj1781.style.KhtmlOpacity)
crossobj1781.style.KhtmlOpacity=this.degree1781/100
else if (crossobj1781.style.opacity&&!crossobj1781.filters)
crossobj1781.style.opacity=this.degree1781/101
}


fadeshow1781.prototype.startit1781=function(){
var crossobj1781=iebrowser1781? iebrowser1781[this.curcanvas1781] : document.getElementById(this.curcanvas1781)
this.populateslide1781(crossobj1781, this.curimageindex1781)
if (this.pausecheck1781==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1781=this
var crossobjcontainer1781=iebrowser1781? iebrowser1781["master1781"+this.slideshowid1781] : document.getElementById("master1781"+this.slideshowid1781)
crossobjcontainer1781.onmouseover=function(){cacheobj1781.mouseovercheck1781=1}
crossobjcontainer1781.onmouseout=function(){cacheobj1781.mouseovercheck1781=0}
}
this.rotateimage1781()
}
var delay = 7 * 1000;
new fadeshow1781 (fadeimages1781, 250, 250, 0, delay, 1, 'truetrue')

document.write("");
