var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-3026{';
wsContentVar += '        width:232px;';
wsContentVar += '        height:307px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-3026-content-with-border{';
wsContentVar += '   height:307px;';
wsContentVar += '   width:232px;';
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 fadeimages3026=new Array()

fadeimages3026 [0]=["https://illinois.edu/lb/files/2011/05/10/33398.jpg", "http://business.illinois.edu/ael/cozad/index.html", "_new", ""];

fadeimages3026 [1]=["https://illinois.edu/lb/files/2010/10/15/29952.jpg", "http://business.illinois.edu/ael/alumni/illinois-entrepreneurs/profiles/west.html", "_new", "Stephen West"];

fadeimages3026 [2]=["https://illinois.edu/lb/files/2011/07/15/34278.JPG", "http://business.illinois.edu/ael/atillinois/profiles/miller.html", "_new", ""];

fadeimages3026 [3]=["https://illinois.edu/lb/files/2010/08/16/28713.jpg", "http://business.illinois.edu/ael/illaunch/new_venture_profiles_parkar.html", "_new", "Parkar"];

fadeimages3026 [4]=["https://illinois.edu/lb/files/2010/03/30/25879.JPG", "http://business.illinois.edu/ael/alumni/illinois-entrepreneurs/profiles/clark.html", "_new", "launch_Ashton and Ryan Clark"];
var fadebgcolor3026="white"

////NO need to edit beyond here/////////////

var fadearray3026=new Array() //array to cache fadeshow instances
var fadeclear3026=new Array() //array to cache corresponding clearinterval pointers

var dom3026=(document.getElementById) //modern dom browsers
var iebrowser3026=document.all

function fadeshow3026(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck3026=pause
this.mouseovercheck3026=0
this.delay3026=delay
this.degree3026=10 //initial opacity degree (10%)
this.curimageindex3026=0
this.nextimageindex3026=1
fadearray3026[fadearray3026.length]=this
this.slideshowid3026=fadearray3026.length-1
this.canvasbase3026="canvas3026"+this.slideshowid3026
this.curcanvas3026=this.canvasbase3026+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages3026=theimages
this.imageborder3026=parseInt(borderwidth)
this.postimages3026=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages3026[p]=new Image()
this.postimages3026[p].src=theimages[p][0]
this.postimages3026[p].alt=theimages[p][3]
}

var fadewidth3026=fadewidth+this.imageborder3026*2
var fadeheight3026=fadeheight+this.imageborder3026*2

if (iebrowser3026&&dom3026||dom3026) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master3026'+this.slideshowid3026+'" class="slide-show-wrapper-3026" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase3026+'_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:'+fadebgcolor3026+'"></div><div id="'+this.canvasbase3026+'_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:'+fadebgcolor3026+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-3026-content-with-border" name="defaultslide3026'+this.slideshowid3026+'" src="'+this.postimages3026[0].src+'" alt="'+this.postimages3026[0].alt+'"></div>')

if (iebrowser3026&&dom3026||dom3026) //if IE5+ or modern browsers such as Firefox
this.startit3026()
else{
this.curimageindex3026++
setInterval("fadearray3026["+this.slideshowid3026+"].rotateimage3026()", this.delay3026)
}
}





function fadepic3026(obj3026){
if (obj3026.degree3026<100){
obj3026.degree3026+=10
if (obj3026.tempobj3026.filters&&obj3026.tempobj3026.filters[0]){
if (typeof obj3026.tempobj3026.filters[0].opacity=="number") //if IE6+
obj3026.tempobj3026.filters[0].opacity=obj3026.degree3026
else //else if IE5.5-
obj3026.tempobj3026.style.filter="alpha(opacity="+obj3026.degree3026+")"
}
else if (obj3026.tempobj3026.style.MozOpacity)
obj3026.tempobj3026.style.MozOpacity=obj3026.degree3026/101
else if (obj3026.tempobj3026.style.KhtmlOpacity)
obj3026.tempobj3026.style.KhtmlOpacity=obj3026.degree3026/100
else if (obj3026.tempobj3026.style.opacity&&!obj3026.tempobj3026.filters)
obj3026.tempobj3026.style.opacity=obj3026.degree3026/101
}
else{
clearInterval(fadeclear3026[obj3026.slideshowid3026])
obj3026.nextcanvas3026=(obj3026.curcanvas3026==obj3026.canvasbase3026+"_0")? obj3026.canvasbase3026+"_0" : obj3026.canvasbase3026+"_1"
obj3026.tempobj3026=iebrowser3026? iebrowser3026[obj3026.nextcanvas3026] : document.getElementById(obj3026.nextcanvas3026)
obj3026.populateslide3026(obj3026.tempobj3026, obj3026.nextimageindex3026)
obj3026.nextimageindex3026=(obj3026.nextimageindex3026<obj3026.postimages3026.length-1)? obj3026.nextimageindex3026+1 : 0
setTimeout("fadearray3026["+obj3026.slideshowid3026+"].rotateimage3026()", obj3026.delay3026)
}
}


fadeshow3026.prototype.populateslide3026=function(picobj3026, picindex3026){
var slideHTML3026=""
if (this.theimages3026[picindex3026][1]!="") //if associated link exists for image
slideHTML3026='<a href="'+this.theimages3026[picindex3026][1]+'" target="'+this.theimages3026[picindex3026][2]+'">'
slideHTML3026+='<img class="edu-il-ws-3026-content-with-border" src="'+this.postimages3026[picindex3026].src+'" alt="'+this.postimages3026[picindex3026].alt+'" border="'+this.imageborder3026+'px">'
if (this.theimages3026[picindex3026][1]!="") //if associated link exists for image
slideHTML3026+='</a>'
picobj3026.innerHTML=slideHTML3026
}


fadeshow3026.prototype.rotateimage3026=function(){
if (this.pausecheck3026==1) //if pause onMouseover enabled, cache object
var cacheobj3026=this
if (this.mouseovercheck3026==1)
setTimeout(function(){cacheobj3026.rotateimage3026()}, 100)
else if (iebrowser3026&&dom3026||dom3026){
this.resetit3026()
var crossobj3026=this.tempobj3026=iebrowser3026? iebrowser3026[this.curcanvas3026] : document.getElementById(this.curcanvas3026)
crossobj3026.style.zIndex++
fadeclear3026[this.slideshowid3026]=setInterval("fadepic3026(fadearray3026["+this.slideshowid3026+"])",50)
this.curcanvas3026=(this.curcanvas3026==this.canvasbase3026+"_0")? this.canvasbase3026+"_1" : this.canvasbase3026+"_0"
}
else{
var ns4imgobj3026=document.images['defaultslide3026'+this.slideshowid3026]
ns4imgobj3026.src=this.postimages3026[this.curimageindex3026].src
ms4imgobj3026.alt=this.postimages3026[this.curimageindex3026].alt
}
this.curimageindex3026=(this.curimageindex3026<this.postimages3026.length-1)? this.curimageindex3026+1 : 0
}

fadeshow3026.prototype.resetit3026=function(){
this.degree3026=10
var crossobj3026=iebrowser3026? iebrowser3026[this.curcanvas3026] : document.getElementById(this.curcanvas3026)
if (crossobj3026.filters&&crossobj3026.filters[0]){
if (typeof crossobj3026.filters[0].opacity=="number") //if IE6+
crossobj3026.filters(0).opacity=this.degree3026
else //else if IE5.5-
crossobj3026.style.filter="alpha(opacity="+this.degree3026+")"
}
else if (crossobj3026.style.MozOpacity)
crossobj3026.style.MozOpacity=this.degree3026/101
else if (crossobj3026.style.KhtmlOpacity)
crossobj3026.style.KhtmlOpacity=this.degree3026/100
else if (crossobj3026.style.opacity&&!crossobj3026.filters)
crossobj3026.style.opacity=this.degree3026/101
}


fadeshow3026.prototype.startit3026=function(){
var crossobj3026=iebrowser3026? iebrowser3026[this.curcanvas3026] : document.getElementById(this.curcanvas3026)
this.populateslide3026(crossobj3026, this.curimageindex3026)
if (this.pausecheck3026==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj3026=this
var crossobjcontainer3026=iebrowser3026? iebrowser3026["master3026"+this.slideshowid3026] : document.getElementById("master3026"+this.slideshowid3026)
crossobjcontainer3026.onmouseover=function(){cacheobj3026.mouseovercheck3026=1}
crossobjcontainer3026.onmouseout=function(){cacheobj3026.mouseovercheck3026=0}
}
this.rotateimage3026()
}
var delay = 23 * 1000;
new fadeshow3026 (fadeimages3026, 250, 250, 0, delay, 1, 'truetrue')

document.write("");

