var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-2292{';
wsContentVar += '        width:390px;';
wsContentVar += '        height:250px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-2292-content-with-border{';
wsContentVar += '   height:250px;';
wsContentVar += '   width:390px;';
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 fadeimages2292=new Array()

fadeimages2292 [0]=["https://illinois.edu/lb/files/2009/11/13/22999.jpg", "http://www.uis.edu/careerservices/online_resources.html", "_new", "First Research. Make informed career decisions."];

fadeimages2292 [1]=["https://illinois.edu/lb/files/2009/11/13/22998.jpg", "http://www.uis.edu/careerservices/online_resources.html", "_new", "Build your online portfolio and share it with employers and grad schools!"];

fadeimages2292 [2]=["https://illinois.edu/lb/files/2009/11/13/23000.jpg", "http://www.uis.edu/careerservices/online_resources.html", "_new", "Million Dollar Database - Use advanced search to discover contacts, businesses, and career leads."];

fadeimages2292 [3]=["https://illinois.edu/lb/files/2009/08/05/12157.png", "http://www.uis.edu/careerservices/uissuccess/uissuccess-login.html", "_new", "UIS Success is now UIS CareerConnect"];
var fadebgcolor2292="white"

////NO need to edit beyond here/////////////

var fadearray2292=new Array() //array to cache fadeshow instances
var fadeclear2292=new Array() //array to cache corresponding clearinterval pointers

var dom2292=(document.getElementById) //modern dom browsers
var iebrowser2292=document.all

function fadeshow2292(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck2292=pause
this.mouseovercheck2292=0
this.delay2292=delay
this.degree2292=10 //initial opacity degree (10%)
this.curimageindex2292=0
this.nextimageindex2292=1
fadearray2292[fadearray2292.length]=this
this.slideshowid2292=fadearray2292.length-1
this.canvasbase2292="canvas2292"+this.slideshowid2292
this.curcanvas2292=this.canvasbase2292+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages2292=theimages
this.imageborder2292=parseInt(borderwidth)
this.postimages2292=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages2292[p]=new Image()
this.postimages2292[p].src=theimages[p][0]
this.postimages2292[p].alt=theimages[p][3]
}

var fadewidth2292=fadewidth+this.imageborder2292*2
var fadeheight2292=fadeheight+this.imageborder2292*2

if (iebrowser2292&&dom2292||dom2292) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master2292'+this.slideshowid2292+'" class="slide-show-wrapper-2292" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase2292+'_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:'+fadebgcolor2292+'"></div><div id="'+this.canvasbase2292+'_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:'+fadebgcolor2292+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-2292-content-with-border" name="defaultslide2292'+this.slideshowid2292+'" src="'+this.postimages2292[0].src+'" alt="'+this.postimages2292[0].alt+'"></div>')

if (iebrowser2292&&dom2292||dom2292) //if IE5+ or modern browsers such as Firefox
this.startit2292()
else{
this.curimageindex2292++
setInterval("fadearray2292["+this.slideshowid2292+"].rotateimage2292()", this.delay2292)
}
}





function fadepic2292(obj2292){
if (obj2292.degree2292<100){
obj2292.degree2292+=10
if (obj2292.tempobj2292.filters&&obj2292.tempobj2292.filters[0]){
if (typeof obj2292.tempobj2292.filters[0].opacity=="number") //if IE6+
obj2292.tempobj2292.filters[0].opacity=obj2292.degree2292
else //else if IE5.5-
obj2292.tempobj2292.style.filter="alpha(opacity="+obj2292.degree2292+")"
}
else if (obj2292.tempobj2292.style.MozOpacity)
obj2292.tempobj2292.style.MozOpacity=obj2292.degree2292/101
else if (obj2292.tempobj2292.style.KhtmlOpacity)
obj2292.tempobj2292.style.KhtmlOpacity=obj2292.degree2292/100
else if (obj2292.tempobj2292.style.opacity&&!obj2292.tempobj2292.filters)
obj2292.tempobj2292.style.opacity=obj2292.degree2292/101
}
else{
clearInterval(fadeclear2292[obj2292.slideshowid2292])
obj2292.nextcanvas2292=(obj2292.curcanvas2292==obj2292.canvasbase2292+"_0")? obj2292.canvasbase2292+"_0" : obj2292.canvasbase2292+"_1"
obj2292.tempobj2292=iebrowser2292? iebrowser2292[obj2292.nextcanvas2292] : document.getElementById(obj2292.nextcanvas2292)
obj2292.populateslide2292(obj2292.tempobj2292, obj2292.nextimageindex2292)
obj2292.nextimageindex2292=(obj2292.nextimageindex2292<obj2292.postimages2292.length-1)? obj2292.nextimageindex2292+1 : 0
setTimeout("fadearray2292["+obj2292.slideshowid2292+"].rotateimage2292()", obj2292.delay2292)
}
}


fadeshow2292.prototype.populateslide2292=function(picobj2292, picindex2292){
var slideHTML2292=""
if (this.theimages2292[picindex2292][1]!="") //if associated link exists for image
slideHTML2292='<a href="'+this.theimages2292[picindex2292][1]+'" target="'+this.theimages2292[picindex2292][2]+'">'
slideHTML2292+='<img class="edu-il-ws-2292-content-with-border" src="'+this.postimages2292[picindex2292].src+'" alt="'+this.postimages2292[picindex2292].alt+'" border="'+this.imageborder2292+'px">'
if (this.theimages2292[picindex2292][1]!="") //if associated link exists for image
slideHTML2292+='</a>'
picobj2292.innerHTML=slideHTML2292
}


fadeshow2292.prototype.rotateimage2292=function(){
if (this.pausecheck2292==1) //if pause onMouseover enabled, cache object
var cacheobj2292=this
if (this.mouseovercheck2292==1)
setTimeout(function(){cacheobj2292.rotateimage2292()}, 100)
else if (iebrowser2292&&dom2292||dom2292){
this.resetit2292()
var crossobj2292=this.tempobj2292=iebrowser2292? iebrowser2292[this.curcanvas2292] : document.getElementById(this.curcanvas2292)
crossobj2292.style.zIndex++
fadeclear2292[this.slideshowid2292]=setInterval("fadepic2292(fadearray2292["+this.slideshowid2292+"])",50)
this.curcanvas2292=(this.curcanvas2292==this.canvasbase2292+"_0")? this.canvasbase2292+"_1" : this.canvasbase2292+"_0"
}
else{
var ns4imgobj2292=document.images['defaultslide2292'+this.slideshowid2292]
ns4imgobj2292.src=this.postimages2292[this.curimageindex2292].src
ms4imgobj2292.alt=this.postimages2292[this.curimageindex2292].alt
}
this.curimageindex2292=(this.curimageindex2292<this.postimages2292.length-1)? this.curimageindex2292+1 : 0
}

fadeshow2292.prototype.resetit2292=function(){
this.degree2292=10
var crossobj2292=iebrowser2292? iebrowser2292[this.curcanvas2292] : document.getElementById(this.curcanvas2292)
if (crossobj2292.filters&&crossobj2292.filters[0]){
if (typeof crossobj2292.filters[0].opacity=="number") //if IE6+
crossobj2292.filters(0).opacity=this.degree2292
else //else if IE5.5-
crossobj2292.style.filter="alpha(opacity="+this.degree2292+")"
}
else if (crossobj2292.style.MozOpacity)
crossobj2292.style.MozOpacity=this.degree2292/101
else if (crossobj2292.style.KhtmlOpacity)
crossobj2292.style.KhtmlOpacity=this.degree2292/100
else if (crossobj2292.style.opacity&&!crossobj2292.filters)
crossobj2292.style.opacity=this.degree2292/101
}


fadeshow2292.prototype.startit2292=function(){
var crossobj2292=iebrowser2292? iebrowser2292[this.curcanvas2292] : document.getElementById(this.curcanvas2292)
this.populateslide2292(crossobj2292, this.curimageindex2292)
if (this.pausecheck2292==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj2292=this
var crossobjcontainer2292=iebrowser2292? iebrowser2292["master2292"+this.slideshowid2292] : document.getElementById("master2292"+this.slideshowid2292)
crossobjcontainer2292.onmouseover=function(){cacheobj2292.mouseovercheck2292=1}
crossobjcontainer2292.onmouseout=function(){cacheobj2292.mouseovercheck2292=0}
}
this.rotateimage2292()
}
var delay = 4 * 1000;
new fadeshow2292 (fadeimages2292, 250, 250, 0, delay, 1, 'truetrue')

document.write("");
