var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-2727{';
wsContentVar += '        width:264px;';
wsContentVar += '        height:100px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-2727-content-with-border{';
wsContentVar += '   height:100px;';
wsContentVar += '   width:264px;';
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 fadeimages2727=new Array()

fadeimages2727 [0]=["https://illinois.edu/lb/files/2010/11/11/30411.gif", "http://www.upcrc.illinois.edu/tools.html", "", "Tools Icon"];

fadeimages2727 [1]=["https://illinois.edu/lb/files/2009/12/04/23338.gif", "http://www.upcrc.illinois.edu/summer/2011/index.html", "", "2011 Multicore Programming School"];
var fadebgcolor2727="white"

////NO need to edit beyond here/////////////

var fadearray2727=new Array() //array to cache fadeshow instances
var fadeclear2727=new Array() //array to cache corresponding clearinterval pointers

var dom2727=(document.getElementById) //modern dom browsers
var iebrowser2727=document.all

function fadeshow2727(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck2727=pause
this.mouseovercheck2727=0
this.delay2727=delay
this.degree2727=10 //initial opacity degree (10%)
this.curimageindex2727=0
this.nextimageindex2727=1
fadearray2727[fadearray2727.length]=this
this.slideshowid2727=fadearray2727.length-1
this.canvasbase2727="canvas2727"+this.slideshowid2727
this.curcanvas2727=this.canvasbase2727+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages2727=theimages
this.imageborder2727=parseInt(borderwidth)
this.postimages2727=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages2727[p]=new Image()
this.postimages2727[p].src=theimages[p][0]
this.postimages2727[p].alt=theimages[p][3]
}

var fadewidth2727=fadewidth+this.imageborder2727*2
var fadeheight2727=fadeheight+this.imageborder2727*2

if (iebrowser2727&&dom2727||dom2727) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master2727'+this.slideshowid2727+'" class="slide-show-wrapper-2727" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase2727+'_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:'+fadebgcolor2727+'"></div><div id="'+this.canvasbase2727+'_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:'+fadebgcolor2727+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-2727-content-with-border" name="defaultslide2727'+this.slideshowid2727+'" src="'+this.postimages2727[0].src+'" alt="'+this.postimages2727[0].alt+'"></div>')

if (iebrowser2727&&dom2727||dom2727) //if IE5+ or modern browsers such as Firefox
this.startit2727()
else{
this.curimageindex2727++
setInterval("fadearray2727["+this.slideshowid2727+"].rotateimage2727()", this.delay2727)
}
}





function fadepic2727(obj2727){
if (obj2727.degree2727<100){
obj2727.degree2727+=10
if (obj2727.tempobj2727.filters&&obj2727.tempobj2727.filters[0]){
if (typeof obj2727.tempobj2727.filters[0].opacity=="number") //if IE6+
obj2727.tempobj2727.filters[0].opacity=obj2727.degree2727
else //else if IE5.5-
obj2727.tempobj2727.style.filter="alpha(opacity="+obj2727.degree2727+")"
}
else if (obj2727.tempobj2727.style.MozOpacity)
obj2727.tempobj2727.style.MozOpacity=obj2727.degree2727/101
else if (obj2727.tempobj2727.style.KhtmlOpacity)
obj2727.tempobj2727.style.KhtmlOpacity=obj2727.degree2727/100
else if (obj2727.tempobj2727.style.opacity&&!obj2727.tempobj2727.filters)
obj2727.tempobj2727.style.opacity=obj2727.degree2727/101
}
else{
clearInterval(fadeclear2727[obj2727.slideshowid2727])
obj2727.nextcanvas2727=(obj2727.curcanvas2727==obj2727.canvasbase2727+"_0")? obj2727.canvasbase2727+"_0" : obj2727.canvasbase2727+"_1"
obj2727.tempobj2727=iebrowser2727? iebrowser2727[obj2727.nextcanvas2727] : document.getElementById(obj2727.nextcanvas2727)
obj2727.populateslide2727(obj2727.tempobj2727, obj2727.nextimageindex2727)
obj2727.nextimageindex2727=(obj2727.nextimageindex2727<obj2727.postimages2727.length-1)? obj2727.nextimageindex2727+1 : 0
setTimeout("fadearray2727["+obj2727.slideshowid2727+"].rotateimage2727()", obj2727.delay2727)
}
}


fadeshow2727.prototype.populateslide2727=function(picobj2727, picindex2727){
var slideHTML2727=""
if (this.theimages2727[picindex2727][1]!="") //if associated link exists for image
slideHTML2727='<a href="'+this.theimages2727[picindex2727][1]+'" target="'+this.theimages2727[picindex2727][2]+'">'
slideHTML2727+='<img class="edu-il-ws-2727-content-with-border" src="'+this.postimages2727[picindex2727].src+'" alt="'+this.postimages2727[picindex2727].alt+'" border="'+this.imageborder2727+'px">'
if (this.theimages2727[picindex2727][1]!="") //if associated link exists for image
slideHTML2727+='</a>'
picobj2727.innerHTML=slideHTML2727
}


fadeshow2727.prototype.rotateimage2727=function(){
if (this.pausecheck2727==1) //if pause onMouseover enabled, cache object
var cacheobj2727=this
if (this.mouseovercheck2727==1)
setTimeout(function(){cacheobj2727.rotateimage2727()}, 100)
else if (iebrowser2727&&dom2727||dom2727){
this.resetit2727()
var crossobj2727=this.tempobj2727=iebrowser2727? iebrowser2727[this.curcanvas2727] : document.getElementById(this.curcanvas2727)
crossobj2727.style.zIndex++
fadeclear2727[this.slideshowid2727]=setInterval("fadepic2727(fadearray2727["+this.slideshowid2727+"])",50)
this.curcanvas2727=(this.curcanvas2727==this.canvasbase2727+"_0")? this.canvasbase2727+"_1" : this.canvasbase2727+"_0"
}
else{
var ns4imgobj2727=document.images['defaultslide2727'+this.slideshowid2727]
ns4imgobj2727.src=this.postimages2727[this.curimageindex2727].src
ms4imgobj2727.alt=this.postimages2727[this.curimageindex2727].alt
}
this.curimageindex2727=(this.curimageindex2727<this.postimages2727.length-1)? this.curimageindex2727+1 : 0
}

fadeshow2727.prototype.resetit2727=function(){
this.degree2727=10
var crossobj2727=iebrowser2727? iebrowser2727[this.curcanvas2727] : document.getElementById(this.curcanvas2727)
if (crossobj2727.filters&&crossobj2727.filters[0]){
if (typeof crossobj2727.filters[0].opacity=="number") //if IE6+
crossobj2727.filters(0).opacity=this.degree2727
else //else if IE5.5-
crossobj2727.style.filter="alpha(opacity="+this.degree2727+")"
}
else if (crossobj2727.style.MozOpacity)
crossobj2727.style.MozOpacity=this.degree2727/101
else if (crossobj2727.style.KhtmlOpacity)
crossobj2727.style.KhtmlOpacity=this.degree2727/100
else if (crossobj2727.style.opacity&&!crossobj2727.filters)
crossobj2727.style.opacity=this.degree2727/101
}


fadeshow2727.prototype.startit2727=function(){
var crossobj2727=iebrowser2727? iebrowser2727[this.curcanvas2727] : document.getElementById(this.curcanvas2727)
this.populateslide2727(crossobj2727, this.curimageindex2727)
if (this.pausecheck2727==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj2727=this
var crossobjcontainer2727=iebrowser2727? iebrowser2727["master2727"+this.slideshowid2727] : document.getElementById("master2727"+this.slideshowid2727)
crossobjcontainer2727.onmouseover=function(){cacheobj2727.mouseovercheck2727=1}
crossobjcontainer2727.onmouseout=function(){cacheobj2727.mouseovercheck2727=0}
}
this.rotateimage2727()
}
var delay = 3 * 1000;
new fadeshow2727 (fadeimages2727, 250, 250, 0, delay, 1, 'truetrue')

document.write("");

