var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1329{';
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 fadeimages1329=new Array()

fadeimages1329 [0]=["https://illinois.edu/lb/files/2009/08/24/21040.jpg", "", "", "sweet 16"];
var fadebgcolor1329="white"

////NO need to edit beyond here/////////////

var fadearray1329=new Array() //array to cache fadeshow instances
var fadeclear1329=new Array() //array to cache corresponding clearinterval pointers

var dom1329=(document.getElementById) //modern dom browsers
var iebrowser1329=document.all

function fadeshow1329(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1329=pause
this.mouseovercheck1329=0
this.delay1329=delay
this.degree1329=10 //initial opacity degree (10%)
this.curimageindex1329=0
this.nextimageindex1329=1
fadearray1329[fadearray1329.length]=this
this.slideshowid1329=fadearray1329.length-1
this.canvasbase1329="canvas1329"+this.slideshowid1329
this.curcanvas1329=this.canvasbase1329+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1329=theimages
this.imageborder1329=parseInt(borderwidth)
this.postimages1329=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1329[p]=new Image()
this.postimages1329[p].src=theimages[p][0]
this.postimages1329[p].alt=theimages[p][3]
}

var fadewidth1329=fadewidth+this.imageborder1329*2
var fadeheight1329=fadeheight+this.imageborder1329*2

if (iebrowser1329&&dom1329||dom1329) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1329'+this.slideshowid1329+'" class="slide-show-wrapper-1329" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1329+'_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:'+fadebgcolor1329+'"></div><div id="'+this.canvasbase1329+'_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:'+fadebgcolor1329+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1329-content-with-border" name="defaultslide1329'+this.slideshowid1329+'" src="'+this.postimages1329[0].src+'" alt="'+this.postimages1329[0].alt+'"></div>')

if (iebrowser1329&&dom1329||dom1329) //if IE5+ or modern browsers such as Firefox
this.startit1329()
else{
this.curimageindex1329++
setInterval("fadearray1329["+this.slideshowid1329+"].rotateimage1329()", this.delay1329)
}
}





function fadepic1329(obj1329){
if (obj1329.degree1329<100){
obj1329.degree1329+=10
if (obj1329.tempobj1329.filters&&obj1329.tempobj1329.filters[0]){
if (typeof obj1329.tempobj1329.filters[0].opacity=="number") //if IE6+
obj1329.tempobj1329.filters[0].opacity=obj1329.degree1329
else //else if IE5.5-
obj1329.tempobj1329.style.filter="alpha(opacity="+obj1329.degree1329+")"
}
else if (obj1329.tempobj1329.style.MozOpacity)
obj1329.tempobj1329.style.MozOpacity=obj1329.degree1329/101
else if (obj1329.tempobj1329.style.KhtmlOpacity)
obj1329.tempobj1329.style.KhtmlOpacity=obj1329.degree1329/100
else if (obj1329.tempobj1329.style.opacity&&!obj1329.tempobj1329.filters)
obj1329.tempobj1329.style.opacity=obj1329.degree1329/101
}
else{
clearInterval(fadeclear1329[obj1329.slideshowid1329])
obj1329.nextcanvas1329=(obj1329.curcanvas1329==obj1329.canvasbase1329+"_0")? obj1329.canvasbase1329+"_0" : obj1329.canvasbase1329+"_1"
obj1329.tempobj1329=iebrowser1329? iebrowser1329[obj1329.nextcanvas1329] : document.getElementById(obj1329.nextcanvas1329)
obj1329.populateslide1329(obj1329.tempobj1329, obj1329.nextimageindex1329)
obj1329.nextimageindex1329=(obj1329.nextimageindex1329<obj1329.postimages1329.length-1)? obj1329.nextimageindex1329+1 : 0
setTimeout("fadearray1329["+obj1329.slideshowid1329+"].rotateimage1329()", obj1329.delay1329)
}
}


fadeshow1329.prototype.populateslide1329=function(picobj1329, picindex1329){
var slideHTML1329=""
if (this.theimages1329[picindex1329][1]!="") //if associated link exists for image
slideHTML1329='<a href="'+this.theimages1329[picindex1329][1]+'" target="'+this.theimages1329[picindex1329][2]+'">'
slideHTML1329+='<img class="edu-il-ws-1329-content-with-border" src="'+this.postimages1329[picindex1329].src+'" alt="'+this.postimages1329[picindex1329].alt+'" border="'+this.imageborder1329+'px">'
if (this.theimages1329[picindex1329][1]!="") //if associated link exists for image
slideHTML1329+='</a>'
picobj1329.innerHTML=slideHTML1329
}


fadeshow1329.prototype.rotateimage1329=function(){
if (this.pausecheck1329==1) //if pause onMouseover enabled, cache object
var cacheobj1329=this
if (this.mouseovercheck1329==1)
setTimeout(function(){cacheobj1329.rotateimage1329()}, 100)
else if (iebrowser1329&&dom1329||dom1329){
this.resetit1329()
var crossobj1329=this.tempobj1329=iebrowser1329? iebrowser1329[this.curcanvas1329] : document.getElementById(this.curcanvas1329)
crossobj1329.style.zIndex++
fadeclear1329[this.slideshowid1329]=setInterval("fadepic1329(fadearray1329["+this.slideshowid1329+"])",50)
this.curcanvas1329=(this.curcanvas1329==this.canvasbase1329+"_0")? this.canvasbase1329+"_1" : this.canvasbase1329+"_0"
}
else{
var ns4imgobj1329=document.images['defaultslide1329'+this.slideshowid1329]
ns4imgobj1329.src=this.postimages1329[this.curimageindex1329].src
ms4imgobj1329.alt=this.postimages1329[this.curimageindex1329].alt
}
this.curimageindex1329=(this.curimageindex1329<this.postimages1329.length-1)? this.curimageindex1329+1 : 0
}

fadeshow1329.prototype.resetit1329=function(){
this.degree1329=10
var crossobj1329=iebrowser1329? iebrowser1329[this.curcanvas1329] : document.getElementById(this.curcanvas1329)
if (crossobj1329.filters&&crossobj1329.filters[0]){
if (typeof crossobj1329.filters[0].opacity=="number") //if IE6+
crossobj1329.filters(0).opacity=this.degree1329
else //else if IE5.5-
crossobj1329.style.filter="alpha(opacity="+this.degree1329+")"
}
else if (crossobj1329.style.MozOpacity)
crossobj1329.style.MozOpacity=this.degree1329/101
else if (crossobj1329.style.KhtmlOpacity)
crossobj1329.style.KhtmlOpacity=this.degree1329/100
else if (crossobj1329.style.opacity&&!crossobj1329.filters)
crossobj1329.style.opacity=this.degree1329/101
}


fadeshow1329.prototype.startit1329=function(){
var crossobj1329=iebrowser1329? iebrowser1329[this.curcanvas1329] : document.getElementById(this.curcanvas1329)
this.populateslide1329(crossobj1329, this.curimageindex1329)
if (this.pausecheck1329==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1329=this
var crossobjcontainer1329=iebrowser1329? iebrowser1329["master1329"+this.slideshowid1329] : document.getElementById("master1329"+this.slideshowid1329)
crossobjcontainer1329.onmouseover=function(){cacheobj1329.mouseovercheck1329=1}
crossobjcontainer1329.onmouseout=function(){cacheobj1329.mouseovercheck1329=0}
}
this.rotateimage1329()
}
var delay = 7 * 1000;
new fadeshow1329 (fadeimages1329, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
