var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1214{';
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 fadeimages1214=new Array()

fadeimages1214 [0]=["https://illinois.edu/lb/files/2009/08/24/21035.jpg", "", "_new", "Megan Fudge"];
var fadebgcolor1214="white"

////NO need to edit beyond here/////////////

var fadearray1214=new Array() //array to cache fadeshow instances
var fadeclear1214=new Array() //array to cache corresponding clearinterval pointers

var dom1214=(document.getElementById) //modern dom browsers
var iebrowser1214=document.all

function fadeshow1214(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1214=pause
this.mouseovercheck1214=0
this.delay1214=delay
this.degree1214=10 //initial opacity degree (10%)
this.curimageindex1214=0
this.nextimageindex1214=1
fadearray1214[fadearray1214.length]=this
this.slideshowid1214=fadearray1214.length-1
this.canvasbase1214="canvas1214"+this.slideshowid1214
this.curcanvas1214=this.canvasbase1214+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1214=theimages
this.imageborder1214=parseInt(borderwidth)
this.postimages1214=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1214[p]=new Image()
this.postimages1214[p].src=theimages[p][0]
this.postimages1214[p].alt=theimages[p][3]
}

var fadewidth1214=fadewidth+this.imageborder1214*2
var fadeheight1214=fadeheight+this.imageborder1214*2

if (iebrowser1214&&dom1214||dom1214) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1214'+this.slideshowid1214+'" class="slide-show-wrapper-1214" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1214+'_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:'+fadebgcolor1214+'"></div><div id="'+this.canvasbase1214+'_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:'+fadebgcolor1214+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1214-content-with-border" name="defaultslide1214'+this.slideshowid1214+'" src="'+this.postimages1214[0].src+'" alt="'+this.postimages1214[0].alt+'"></div>')

if (iebrowser1214&&dom1214||dom1214) //if IE5+ or modern browsers such as Firefox
this.startit1214()
else{
this.curimageindex1214++
setInterval("fadearray1214["+this.slideshowid1214+"].rotateimage1214()", this.delay1214)
}
}





function fadepic1214(obj1214){
if (obj1214.degree1214<100){
obj1214.degree1214+=10
if (obj1214.tempobj1214.filters&&obj1214.tempobj1214.filters[0]){
if (typeof obj1214.tempobj1214.filters[0].opacity=="number") //if IE6+
obj1214.tempobj1214.filters[0].opacity=obj1214.degree1214
else //else if IE5.5-
obj1214.tempobj1214.style.filter="alpha(opacity="+obj1214.degree1214+")"
}
else if (obj1214.tempobj1214.style.MozOpacity)
obj1214.tempobj1214.style.MozOpacity=obj1214.degree1214/101
else if (obj1214.tempobj1214.style.KhtmlOpacity)
obj1214.tempobj1214.style.KhtmlOpacity=obj1214.degree1214/100
else if (obj1214.tempobj1214.style.opacity&&!obj1214.tempobj1214.filters)
obj1214.tempobj1214.style.opacity=obj1214.degree1214/101
}
else{
clearInterval(fadeclear1214[obj1214.slideshowid1214])
obj1214.nextcanvas1214=(obj1214.curcanvas1214==obj1214.canvasbase1214+"_0")? obj1214.canvasbase1214+"_0" : obj1214.canvasbase1214+"_1"
obj1214.tempobj1214=iebrowser1214? iebrowser1214[obj1214.nextcanvas1214] : document.getElementById(obj1214.nextcanvas1214)
obj1214.populateslide1214(obj1214.tempobj1214, obj1214.nextimageindex1214)
obj1214.nextimageindex1214=(obj1214.nextimageindex1214<obj1214.postimages1214.length-1)? obj1214.nextimageindex1214+1 : 0
setTimeout("fadearray1214["+obj1214.slideshowid1214+"].rotateimage1214()", obj1214.delay1214)
}
}


fadeshow1214.prototype.populateslide1214=function(picobj1214, picindex1214){
var slideHTML1214=""
if (this.theimages1214[picindex1214][1]!="") //if associated link exists for image
slideHTML1214='<a href="'+this.theimages1214[picindex1214][1]+'" target="'+this.theimages1214[picindex1214][2]+'">'
slideHTML1214+='<img class="edu-il-ws-1214-content-with-border" src="'+this.postimages1214[picindex1214].src+'" alt="'+this.postimages1214[picindex1214].alt+'" border="'+this.imageborder1214+'px">'
if (this.theimages1214[picindex1214][1]!="") //if associated link exists for image
slideHTML1214+='</a>'
picobj1214.innerHTML=slideHTML1214
}


fadeshow1214.prototype.rotateimage1214=function(){
if (this.pausecheck1214==1) //if pause onMouseover enabled, cache object
var cacheobj1214=this
if (this.mouseovercheck1214==1)
setTimeout(function(){cacheobj1214.rotateimage1214()}, 100)
else if (iebrowser1214&&dom1214||dom1214){
this.resetit1214()
var crossobj1214=this.tempobj1214=iebrowser1214? iebrowser1214[this.curcanvas1214] : document.getElementById(this.curcanvas1214)
crossobj1214.style.zIndex++
fadeclear1214[this.slideshowid1214]=setInterval("fadepic1214(fadearray1214["+this.slideshowid1214+"])",50)
this.curcanvas1214=(this.curcanvas1214==this.canvasbase1214+"_0")? this.canvasbase1214+"_1" : this.canvasbase1214+"_0"
}
else{
var ns4imgobj1214=document.images['defaultslide1214'+this.slideshowid1214]
ns4imgobj1214.src=this.postimages1214[this.curimageindex1214].src
ms4imgobj1214.alt=this.postimages1214[this.curimageindex1214].alt
}
this.curimageindex1214=(this.curimageindex1214<this.postimages1214.length-1)? this.curimageindex1214+1 : 0
}

fadeshow1214.prototype.resetit1214=function(){
this.degree1214=10
var crossobj1214=iebrowser1214? iebrowser1214[this.curcanvas1214] : document.getElementById(this.curcanvas1214)
if (crossobj1214.filters&&crossobj1214.filters[0]){
if (typeof crossobj1214.filters[0].opacity=="number") //if IE6+
crossobj1214.filters(0).opacity=this.degree1214
else //else if IE5.5-
crossobj1214.style.filter="alpha(opacity="+this.degree1214+")"
}
else if (crossobj1214.style.MozOpacity)
crossobj1214.style.MozOpacity=this.degree1214/101
else if (crossobj1214.style.KhtmlOpacity)
crossobj1214.style.KhtmlOpacity=this.degree1214/100
else if (crossobj1214.style.opacity&&!crossobj1214.filters)
crossobj1214.style.opacity=this.degree1214/101
}


fadeshow1214.prototype.startit1214=function(){
var crossobj1214=iebrowser1214? iebrowser1214[this.curcanvas1214] : document.getElementById(this.curcanvas1214)
this.populateslide1214(crossobj1214, this.curimageindex1214)
if (this.pausecheck1214==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1214=this
var crossobjcontainer1214=iebrowser1214? iebrowser1214["master1214"+this.slideshowid1214] : document.getElementById("master1214"+this.slideshowid1214)
crossobjcontainer1214.onmouseover=function(){cacheobj1214.mouseovercheck1214=1}
crossobjcontainer1214.onmouseout=function(){cacheobj1214.mouseovercheck1214=0}
}
this.rotateimage1214()
}
var delay = 7 * 1000;
new fadeshow1214 (fadeimages1214, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
