var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1602{';
wsContentVar += '  float:right;';
wsContentVar += '  width:221px;';
wsContentVar += '  height:143px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-1602-content-with-border{';
wsContentVar += '  height:143px;';
wsContentVar += '  width:221px;';
wsContentVar += '  padding-left:10px;';
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 fadeimages1602=new Array()

fadeimages1602 [0]=["https://illinois.edu/lb/files/2009/04/15/9805.jpg", "", "_new", ""];

fadeimages1602 [1]=["https://illinois.edu/lb/files/2009/04/15/9804.jpg", "", "_new", ""];

fadeimages1602 [2]=["https://illinois.edu/lb/files/2009/04/15/9806.jpg", "", "_new", ""];

fadeimages1602 [3]=["https://illinois.edu/lb/files/2009/04/15/9807.jpg", "", "_new", ""];

fadeimages1602 [4]=["https://illinois.edu/lb/files/2009/04/15/9809.jpg", "", "_new", ""];

fadeimages1602 [5]=["https://illinois.edu/lb/files/2009/04/15/9808.jpg", "", "_new", ""];

fadeimages1602 [6]=["https://illinois.edu/lb/files/2009/04/15/9810.jpg", "", "_new", ""];

fadeimages1602 [7]=["https://illinois.edu/lb/files/2009/04/15/9803.jpg", "", "_new", ""];

fadeimages1602 [8]=["https://illinois.edu/lb/files/2009/04/15/9811.jpg", "", "_new", ""];

fadeimages1602 [9]=["https://illinois.edu/lb/files/2008/10/09/5911.jpg", "", "_new", ""];

fadeimages1602 [10]=["https://illinois.edu/lb/files/2008/10/09/5908.jpg", "", "_new", ""];

fadeimages1602 [11]=["https://illinois.edu/lb/files/2008/10/09/5912.jpg", "", "_new", ""];
var fadebgcolor1602="white"

////NO need to edit beyond here/////////////

var fadearray1602=new Array() //array to cache fadeshow instances
var fadeclear1602=new Array() //array to cache corresponding clearinterval pointers

var dom1602=(document.getElementById) //modern dom browsers
var iebrowser1602=document.all

function fadeshow1602(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1602=pause
this.mouseovercheck1602=0
this.delay1602=delay
this.degree1602=10 //initial opacity degree (10%)
this.curimageindex1602=0
this.nextimageindex1602=1
fadearray1602[fadearray1602.length]=this
this.slideshowid1602=fadearray1602.length-1
this.canvasbase1602="canvas1602"+this.slideshowid1602
this.curcanvas1602=this.canvasbase1602+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1602=theimages
this.imageborder1602=parseInt(borderwidth)
this.postimages1602=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1602[p]=new Image()
this.postimages1602[p].src=theimages[p][0]
this.postimages1602[p].alt=theimages[p][3]
}

var fadewidth1602=fadewidth+this.imageborder1602*2
var fadeheight1602=fadeheight+this.imageborder1602*2

if (iebrowser1602&&dom1602||dom1602) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1602'+this.slideshowid1602+'" class="slide-show-wrapper-1602" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1602+'_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:'+fadebgcolor1602+'"></div><div id="'+this.canvasbase1602+'_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:'+fadebgcolor1602+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1602-content-with-border" name="defaultslide1602'+this.slideshowid1602+'" src="'+this.postimages1602[0].src+'" alt="'+this.postimages1602[0].alt+'"></div>')

if (iebrowser1602&&dom1602||dom1602) //if IE5+ or modern browsers such as Firefox
this.startit1602()
else{
this.curimageindex1602++
setInterval("fadearray1602["+this.slideshowid1602+"].rotateimage1602()", this.delay1602)
}
}





function fadepic1602(obj1602){
if (obj1602.degree1602<100){
obj1602.degree1602+=10
if (obj1602.tempobj1602.filters&&obj1602.tempobj1602.filters[0]){
if (typeof obj1602.tempobj1602.filters[0].opacity=="number") //if IE6+
obj1602.tempobj1602.filters[0].opacity=obj1602.degree1602
else //else if IE5.5-
obj1602.tempobj1602.style.filter="alpha(opacity="+obj1602.degree1602+")"
}
else if (obj1602.tempobj1602.style.MozOpacity)
obj1602.tempobj1602.style.MozOpacity=obj1602.degree1602/101
else if (obj1602.tempobj1602.style.KhtmlOpacity)
obj1602.tempobj1602.style.KhtmlOpacity=obj1602.degree1602/100
else if (obj1602.tempobj1602.style.opacity&&!obj1602.tempobj1602.filters)
obj1602.tempobj1602.style.opacity=obj1602.degree1602/101
}
else{
clearInterval(fadeclear1602[obj1602.slideshowid1602])
obj1602.nextcanvas1602=(obj1602.curcanvas1602==obj1602.canvasbase1602+"_0")? obj1602.canvasbase1602+"_0" : obj1602.canvasbase1602+"_1"
obj1602.tempobj1602=iebrowser1602? iebrowser1602[obj1602.nextcanvas1602] : document.getElementById(obj1602.nextcanvas1602)
obj1602.populateslide1602(obj1602.tempobj1602, obj1602.nextimageindex1602)
obj1602.nextimageindex1602=(obj1602.nextimageindex1602<obj1602.postimages1602.length-1)? obj1602.nextimageindex1602+1 : 0
setTimeout("fadearray1602["+obj1602.slideshowid1602+"].rotateimage1602()", obj1602.delay1602)
}
}


fadeshow1602.prototype.populateslide1602=function(picobj1602, picindex1602){
var slideHTML1602=""
if (this.theimages1602[picindex1602][1]!="") //if associated link exists for image
slideHTML1602='<a href="'+this.theimages1602[picindex1602][1]+'" target="'+this.theimages1602[picindex1602][2]+'">'
slideHTML1602+='<img class="edu-il-ws-1602-content-with-border" src="'+this.postimages1602[picindex1602].src+'" alt="'+this.postimages1602[picindex1602].alt+'" border="'+this.imageborder1602+'px">'
if (this.theimages1602[picindex1602][1]!="") //if associated link exists for image
slideHTML1602+='</a>'
picobj1602.innerHTML=slideHTML1602
}


fadeshow1602.prototype.rotateimage1602=function(){
if (this.pausecheck1602==1) //if pause onMouseover enabled, cache object
var cacheobj1602=this
if (this.mouseovercheck1602==1)
setTimeout(function(){cacheobj1602.rotateimage1602()}, 100)
else if (iebrowser1602&&dom1602||dom1602){
this.resetit1602()
var crossobj1602=this.tempobj1602=iebrowser1602? iebrowser1602[this.curcanvas1602] : document.getElementById(this.curcanvas1602)
crossobj1602.style.zIndex++
fadeclear1602[this.slideshowid1602]=setInterval("fadepic1602(fadearray1602["+this.slideshowid1602+"])",50)
this.curcanvas1602=(this.curcanvas1602==this.canvasbase1602+"_0")? this.canvasbase1602+"_1" : this.canvasbase1602+"_0"
}
else{
var ns4imgobj1602=document.images['defaultslide1602'+this.slideshowid1602]
ns4imgobj1602.src=this.postimages1602[this.curimageindex1602].src
ms4imgobj1602.alt=this.postimages1602[this.curimageindex1602].alt
}
this.curimageindex1602=(this.curimageindex1602<this.postimages1602.length-1)? this.curimageindex1602+1 : 0
}

fadeshow1602.prototype.resetit1602=function(){
this.degree1602=10
var crossobj1602=iebrowser1602? iebrowser1602[this.curcanvas1602] : document.getElementById(this.curcanvas1602)
if (crossobj1602.filters&&crossobj1602.filters[0]){
if (typeof crossobj1602.filters[0].opacity=="number") //if IE6+
crossobj1602.filters(0).opacity=this.degree1602
else //else if IE5.5-
crossobj1602.style.filter="alpha(opacity="+this.degree1602+")"
}
else if (crossobj1602.style.MozOpacity)
crossobj1602.style.MozOpacity=this.degree1602/101
else if (crossobj1602.style.KhtmlOpacity)
crossobj1602.style.KhtmlOpacity=this.degree1602/100
else if (crossobj1602.style.opacity&&!crossobj1602.filters)
crossobj1602.style.opacity=this.degree1602/101
}


fadeshow1602.prototype.startit1602=function(){
var crossobj1602=iebrowser1602? iebrowser1602[this.curcanvas1602] : document.getElementById(this.curcanvas1602)
this.populateslide1602(crossobj1602, this.curimageindex1602)
if (this.pausecheck1602==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1602=this
var crossobjcontainer1602=iebrowser1602? iebrowser1602["master1602"+this.slideshowid1602] : document.getElementById("master1602"+this.slideshowid1602)
crossobjcontainer1602.onmouseover=function(){cacheobj1602.mouseovercheck1602=1}
crossobjcontainer1602.onmouseout=function(){cacheobj1602.mouseovercheck1602=0}
}
this.rotateimage1602()
}
var delay = 6 * 1000;
new fadeshow1602 (fadeimages1602, 250, 250, 0, delay, 1, 'truetrue')

document.write("");

