var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-3024{';
wsContentVar += '        width:233px;';
wsContentVar += '        height:307px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-3024-content-with-border{';
wsContentVar += '   height:307px;';
wsContentVar += '   width:233px;';
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 fadeimages3024=new Array()

fadeimages3024 [0]=["https://illinois.edu/lb/files/2011/07/15/34282.JPG", "http://business.illinois.edu/ael/illaunch/startupillinois_students.html", "_new", ""];

fadeimages3024 [1]=["https://illinois.edu/lb/files/2011/07/15/34280.JPG", "http://business.illinois.edu/ael/illaunch/startupillinois_recap.html", "_new", ""];

fadeimages3024 [2]=["https://illinois.edu/lb/files/2011/06/03/33848.jpg", "http://business.illinois.edu/ael/illaunch/new_venture_profiles_bruett.html", "_new", ""];

fadeimages3024 [3]=["https://illinois.edu/lb/files/2010/08/16/28709.jpg", "http://business.illinois.edu/ael/illaunch/new_venture_profiles_naber.html", "_new", "Illini Prosthetics Team"];

fadeimages3024 [4]=["https://illinois.edu/lb/files/2010/10/15/29948.jpg", "http://business.illinois.edu/ael/alumni/illinois-entrepreneurs/profiles/walsh.html", "_new", "Patrick Walsh"];
var fadebgcolor3024="white"

////NO need to edit beyond here/////////////

var fadearray3024=new Array() //array to cache fadeshow instances
var fadeclear3024=new Array() //array to cache corresponding clearinterval pointers

var dom3024=(document.getElementById) //modern dom browsers
var iebrowser3024=document.all

function fadeshow3024(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck3024=pause
this.mouseovercheck3024=0
this.delay3024=delay
this.degree3024=10 //initial opacity degree (10%)
this.curimageindex3024=0
this.nextimageindex3024=1
fadearray3024[fadearray3024.length]=this
this.slideshowid3024=fadearray3024.length-1
this.canvasbase3024="canvas3024"+this.slideshowid3024
this.curcanvas3024=this.canvasbase3024+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages3024=theimages
this.imageborder3024=parseInt(borderwidth)
this.postimages3024=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages3024[p]=new Image()
this.postimages3024[p].src=theimages[p][0]
this.postimages3024[p].alt=theimages[p][3]
}

var fadewidth3024=fadewidth+this.imageborder3024*2
var fadeheight3024=fadeheight+this.imageborder3024*2

if (iebrowser3024&&dom3024||dom3024) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master3024'+this.slideshowid3024+'" class="slide-show-wrapper-3024" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase3024+'_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:'+fadebgcolor3024+'"></div><div id="'+this.canvasbase3024+'_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:'+fadebgcolor3024+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-3024-content-with-border" name="defaultslide3024'+this.slideshowid3024+'" src="'+this.postimages3024[0].src+'" alt="'+this.postimages3024[0].alt+'"></div>')

if (iebrowser3024&&dom3024||dom3024) //if IE5+ or modern browsers such as Firefox
this.startit3024()
else{
this.curimageindex3024++
setInterval("fadearray3024["+this.slideshowid3024+"].rotateimage3024()", this.delay3024)
}
}





function fadepic3024(obj3024){
if (obj3024.degree3024<100){
obj3024.degree3024+=10
if (obj3024.tempobj3024.filters&&obj3024.tempobj3024.filters[0]){
if (typeof obj3024.tempobj3024.filters[0].opacity=="number") //if IE6+
obj3024.tempobj3024.filters[0].opacity=obj3024.degree3024
else //else if IE5.5-
obj3024.tempobj3024.style.filter="alpha(opacity="+obj3024.degree3024+")"
}
else if (obj3024.tempobj3024.style.MozOpacity)
obj3024.tempobj3024.style.MozOpacity=obj3024.degree3024/101
else if (obj3024.tempobj3024.style.KhtmlOpacity)
obj3024.tempobj3024.style.KhtmlOpacity=obj3024.degree3024/100
else if (obj3024.tempobj3024.style.opacity&&!obj3024.tempobj3024.filters)
obj3024.tempobj3024.style.opacity=obj3024.degree3024/101
}
else{
clearInterval(fadeclear3024[obj3024.slideshowid3024])
obj3024.nextcanvas3024=(obj3024.curcanvas3024==obj3024.canvasbase3024+"_0")? obj3024.canvasbase3024+"_0" : obj3024.canvasbase3024+"_1"
obj3024.tempobj3024=iebrowser3024? iebrowser3024[obj3024.nextcanvas3024] : document.getElementById(obj3024.nextcanvas3024)
obj3024.populateslide3024(obj3024.tempobj3024, obj3024.nextimageindex3024)
obj3024.nextimageindex3024=(obj3024.nextimageindex3024<obj3024.postimages3024.length-1)? obj3024.nextimageindex3024+1 : 0
setTimeout("fadearray3024["+obj3024.slideshowid3024+"].rotateimage3024()", obj3024.delay3024)
}
}


fadeshow3024.prototype.populateslide3024=function(picobj3024, picindex3024){
var slideHTML3024=""
if (this.theimages3024[picindex3024][1]!="") //if associated link exists for image
slideHTML3024='<a href="'+this.theimages3024[picindex3024][1]+'" target="'+this.theimages3024[picindex3024][2]+'">'
slideHTML3024+='<img class="edu-il-ws-3024-content-with-border" src="'+this.postimages3024[picindex3024].src+'" alt="'+this.postimages3024[picindex3024].alt+'" border="'+this.imageborder3024+'px">'
if (this.theimages3024[picindex3024][1]!="") //if associated link exists for image
slideHTML3024+='</a>'
picobj3024.innerHTML=slideHTML3024
}


fadeshow3024.prototype.rotateimage3024=function(){
if (this.pausecheck3024==1) //if pause onMouseover enabled, cache object
var cacheobj3024=this
if (this.mouseovercheck3024==1)
setTimeout(function(){cacheobj3024.rotateimage3024()}, 100)
else if (iebrowser3024&&dom3024||dom3024){
this.resetit3024()
var crossobj3024=this.tempobj3024=iebrowser3024? iebrowser3024[this.curcanvas3024] : document.getElementById(this.curcanvas3024)
crossobj3024.style.zIndex++
fadeclear3024[this.slideshowid3024]=setInterval("fadepic3024(fadearray3024["+this.slideshowid3024+"])",50)
this.curcanvas3024=(this.curcanvas3024==this.canvasbase3024+"_0")? this.canvasbase3024+"_1" : this.canvasbase3024+"_0"
}
else{
var ns4imgobj3024=document.images['defaultslide3024'+this.slideshowid3024]
ns4imgobj3024.src=this.postimages3024[this.curimageindex3024].src
ms4imgobj3024.alt=this.postimages3024[this.curimageindex3024].alt
}
this.curimageindex3024=(this.curimageindex3024<this.postimages3024.length-1)? this.curimageindex3024+1 : 0
}

fadeshow3024.prototype.resetit3024=function(){
this.degree3024=10
var crossobj3024=iebrowser3024? iebrowser3024[this.curcanvas3024] : document.getElementById(this.curcanvas3024)
if (crossobj3024.filters&&crossobj3024.filters[0]){
if (typeof crossobj3024.filters[0].opacity=="number") //if IE6+
crossobj3024.filters(0).opacity=this.degree3024
else //else if IE5.5-
crossobj3024.style.filter="alpha(opacity="+this.degree3024+")"
}
else if (crossobj3024.style.MozOpacity)
crossobj3024.style.MozOpacity=this.degree3024/101
else if (crossobj3024.style.KhtmlOpacity)
crossobj3024.style.KhtmlOpacity=this.degree3024/100
else if (crossobj3024.style.opacity&&!crossobj3024.filters)
crossobj3024.style.opacity=this.degree3024/101
}


fadeshow3024.prototype.startit3024=function(){
var crossobj3024=iebrowser3024? iebrowser3024[this.curcanvas3024] : document.getElementById(this.curcanvas3024)
this.populateslide3024(crossobj3024, this.curimageindex3024)
if (this.pausecheck3024==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj3024=this
var crossobjcontainer3024=iebrowser3024? iebrowser3024["master3024"+this.slideshowid3024] : document.getElementById("master3024"+this.slideshowid3024)
crossobjcontainer3024.onmouseover=function(){cacheobj3024.mouseovercheck3024=1}
crossobjcontainer3024.onmouseout=function(){cacheobj3024.mouseovercheck3024=0}
}
this.rotateimage3024()
}
var delay = 20 * 1000;
new fadeshow3024 (fadeimages3024, 250, 250, 0, delay, 1, 'truetrue')

document.write("");

