var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-3025{';
wsContentVar += '        width:233px;';
wsContentVar += '        height:307px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-3025-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 fadeimages3025=new Array()

fadeimages3025 [0]=["https://illinois.edu/lb/files/2011/07/15/34284.JPG", "http://business.illinois.edu/ael/illaunch/startupillinois_israel.html", "_new", ""];

fadeimages3025 [1]=["https://illinois.edu/lb/files/2010/06/21/27814.jpg", "http://business.illinois.edu/ael/illaunch/new_venture_profiles_intelliwheels.html", "_new", "IntelliWheels"];

fadeimages3025 [2]=["https://illinois.edu/lb/files/2010/10/15/29950.jpg", "http://business.illinois.edu/ael/alumni/illinois-entrepreneurs/profiles/edgar.html", "_new", "Global Girlfriend"];

fadeimages3025 [3]=["https://illinois.edu/lb/files/2010/03/29/25837.jpg", "http://business.illinois.edu/ael/faculty/fellows/profiles/twidale.html", "_new", "Twidale"];

fadeimages3025 [4]=["https://illinois.edu/lb/files/2010/08/18/28784.jpg", "http://business.illinois.edu/ael/faculty/fellows/profiles/viswanathan.html", "_new", "Madhu"];
var fadebgcolor3025="white"

////NO need to edit beyond here/////////////

var fadearray3025=new Array() //array to cache fadeshow instances
var fadeclear3025=new Array() //array to cache corresponding clearinterval pointers

var dom3025=(document.getElementById) //modern dom browsers
var iebrowser3025=document.all

function fadeshow3025(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck3025=pause
this.mouseovercheck3025=0
this.delay3025=delay
this.degree3025=10 //initial opacity degree (10%)
this.curimageindex3025=0
this.nextimageindex3025=1
fadearray3025[fadearray3025.length]=this
this.slideshowid3025=fadearray3025.length-1
this.canvasbase3025="canvas3025"+this.slideshowid3025
this.curcanvas3025=this.canvasbase3025+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages3025=theimages
this.imageborder3025=parseInt(borderwidth)
this.postimages3025=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages3025[p]=new Image()
this.postimages3025[p].src=theimages[p][0]
this.postimages3025[p].alt=theimages[p][3]
}

var fadewidth3025=fadewidth+this.imageborder3025*2
var fadeheight3025=fadeheight+this.imageborder3025*2

if (iebrowser3025&&dom3025||dom3025) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master3025'+this.slideshowid3025+'" class="slide-show-wrapper-3025" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase3025+'_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:'+fadebgcolor3025+'"></div><div id="'+this.canvasbase3025+'_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:'+fadebgcolor3025+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-3025-content-with-border" name="defaultslide3025'+this.slideshowid3025+'" src="'+this.postimages3025[0].src+'" alt="'+this.postimages3025[0].alt+'"></div>')

if (iebrowser3025&&dom3025||dom3025) //if IE5+ or modern browsers such as Firefox
this.startit3025()
else{
this.curimageindex3025++
setInterval("fadearray3025["+this.slideshowid3025+"].rotateimage3025()", this.delay3025)
}
}





function fadepic3025(obj3025){
if (obj3025.degree3025<100){
obj3025.degree3025+=10
if (obj3025.tempobj3025.filters&&obj3025.tempobj3025.filters[0]){
if (typeof obj3025.tempobj3025.filters[0].opacity=="number") //if IE6+
obj3025.tempobj3025.filters[0].opacity=obj3025.degree3025
else //else if IE5.5-
obj3025.tempobj3025.style.filter="alpha(opacity="+obj3025.degree3025+")"
}
else if (obj3025.tempobj3025.style.MozOpacity)
obj3025.tempobj3025.style.MozOpacity=obj3025.degree3025/101
else if (obj3025.tempobj3025.style.KhtmlOpacity)
obj3025.tempobj3025.style.KhtmlOpacity=obj3025.degree3025/100
else if (obj3025.tempobj3025.style.opacity&&!obj3025.tempobj3025.filters)
obj3025.tempobj3025.style.opacity=obj3025.degree3025/101
}
else{
clearInterval(fadeclear3025[obj3025.slideshowid3025])
obj3025.nextcanvas3025=(obj3025.curcanvas3025==obj3025.canvasbase3025+"_0")? obj3025.canvasbase3025+"_0" : obj3025.canvasbase3025+"_1"
obj3025.tempobj3025=iebrowser3025? iebrowser3025[obj3025.nextcanvas3025] : document.getElementById(obj3025.nextcanvas3025)
obj3025.populateslide3025(obj3025.tempobj3025, obj3025.nextimageindex3025)
obj3025.nextimageindex3025=(obj3025.nextimageindex3025<obj3025.postimages3025.length-1)? obj3025.nextimageindex3025+1 : 0
setTimeout("fadearray3025["+obj3025.slideshowid3025+"].rotateimage3025()", obj3025.delay3025)
}
}


fadeshow3025.prototype.populateslide3025=function(picobj3025, picindex3025){
var slideHTML3025=""
if (this.theimages3025[picindex3025][1]!="") //if associated link exists for image
slideHTML3025='<a href="'+this.theimages3025[picindex3025][1]+'" target="'+this.theimages3025[picindex3025][2]+'">'
slideHTML3025+='<img class="edu-il-ws-3025-content-with-border" src="'+this.postimages3025[picindex3025].src+'" alt="'+this.postimages3025[picindex3025].alt+'" border="'+this.imageborder3025+'px">'
if (this.theimages3025[picindex3025][1]!="") //if associated link exists for image
slideHTML3025+='</a>'
picobj3025.innerHTML=slideHTML3025
}


fadeshow3025.prototype.rotateimage3025=function(){
if (this.pausecheck3025==1) //if pause onMouseover enabled, cache object
var cacheobj3025=this
if (this.mouseovercheck3025==1)
setTimeout(function(){cacheobj3025.rotateimage3025()}, 100)
else if (iebrowser3025&&dom3025||dom3025){
this.resetit3025()
var crossobj3025=this.tempobj3025=iebrowser3025? iebrowser3025[this.curcanvas3025] : document.getElementById(this.curcanvas3025)
crossobj3025.style.zIndex++
fadeclear3025[this.slideshowid3025]=setInterval("fadepic3025(fadearray3025["+this.slideshowid3025+"])",50)
this.curcanvas3025=(this.curcanvas3025==this.canvasbase3025+"_0")? this.canvasbase3025+"_1" : this.canvasbase3025+"_0"
}
else{
var ns4imgobj3025=document.images['defaultslide3025'+this.slideshowid3025]
ns4imgobj3025.src=this.postimages3025[this.curimageindex3025].src
ms4imgobj3025.alt=this.postimages3025[this.curimageindex3025].alt
}
this.curimageindex3025=(this.curimageindex3025<this.postimages3025.length-1)? this.curimageindex3025+1 : 0
}

fadeshow3025.prototype.resetit3025=function(){
this.degree3025=10
var crossobj3025=iebrowser3025? iebrowser3025[this.curcanvas3025] : document.getElementById(this.curcanvas3025)
if (crossobj3025.filters&&crossobj3025.filters[0]){
if (typeof crossobj3025.filters[0].opacity=="number") //if IE6+
crossobj3025.filters(0).opacity=this.degree3025
else //else if IE5.5-
crossobj3025.style.filter="alpha(opacity="+this.degree3025+")"
}
else if (crossobj3025.style.MozOpacity)
crossobj3025.style.MozOpacity=this.degree3025/101
else if (crossobj3025.style.KhtmlOpacity)
crossobj3025.style.KhtmlOpacity=this.degree3025/100
else if (crossobj3025.style.opacity&&!crossobj3025.filters)
crossobj3025.style.opacity=this.degree3025/101
}


fadeshow3025.prototype.startit3025=function(){
var crossobj3025=iebrowser3025? iebrowser3025[this.curcanvas3025] : document.getElementById(this.curcanvas3025)
this.populateslide3025(crossobj3025, this.curimageindex3025)
if (this.pausecheck3025==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj3025=this
var crossobjcontainer3025=iebrowser3025? iebrowser3025["master3025"+this.slideshowid3025] : document.getElementById("master3025"+this.slideshowid3025)
crossobjcontainer3025.onmouseover=function(){cacheobj3025.mouseovercheck3025=1}
crossobjcontainer3025.onmouseout=function(){cacheobj3025.mouseovercheck3025=0}
}
this.rotateimage3025()
}
var delay = 15 * 1000;
new fadeshow3025 (fadeimages3025, 250, 250, 0, delay, 1, 'truetrue')

document.write("");

