var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1273{';
wsContentVar += '        width:748px;';
wsContentVar += '        height:250px;';
wsContentVar += ' z-index:0;';
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 fadeimages1273=new Array()

fadeimages1273 [0]=["https://illinois.edu/lb/files/2009/10/22/22458.jpg", "http://studentaffairs.illinois.edu/facstaff/news.html", "_new", "Illinois' Student Affairs Receives Two NASPA IV-East Awards"];

fadeimages1273 [1]=["https://illinois.edu/lb/files/2009/10/19/22356.jpg", "http://studentaffairs.illinois.edu/sagallery.html", "_new", "Student Affairs: 'Reconnect' Reunion"];

fadeimages1273 [2]=["https://illinois.edu/lb/files/2009/09/10/21491.jpg", "", "_new", "terry MC"];

fadeimages1273 [3]=["https://illinois.edu/lb/files/2009/09/10/21500.jpg", "", "_new", "renee "];

fadeimages1273 [4]=["https://illinois.edu/lb/files/2009/09/10/21492.jpg", "", "_new", "Fall 2009 Student Affairs Staff Kickoff"];

fadeimages1273 [5]=["https://illinois.edu/lb/files/2009/09/10/21498.jpg", "", "_new", "betoel's into it"];

fadeimages1273 [6]=["https://illinois.edu/lb/files/2009/09/10/21497.jpg", "", "_new", "Jack"];

fadeimages1273 [7]=["https://illinois.edu/lb/files/2009/09/10/21499.jpg", "", "_new", "Gail"];

fadeimages1273 [8]=["https://illinois.edu/lb/files/2009/09/10/21495.jpg", "", "_new", "BobNBrad"];

fadeimages1273 [9]=["https://illinois.edu/lb/files/2009/09/10/21494.jpg", "", "_new", "susan's guess"];

fadeimages1273 [10]=["https://illinois.edu/lb/files/2009/09/10/21503.jpg", "http://studentaffairs.illinois.edu/facstaff/mentoring.html", "_new", "Student Affairs Mentor Program"];

fadeimages1273 [11]=["https://illinois.edu/lb/files/2009/09/10/21496.jpg", "", "_new", "benLeslie"];
var fadebgcolor1273="white"

////NO need to edit beyond here/////////////

var fadearray1273=new Array() //array to cache fadeshow instances
var fadeclear1273=new Array() //array to cache corresponding clearinterval pointers

var dom1273=(document.getElementById) //modern dom browsers
var iebrowser1273=document.all

function fadeshow1273(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1273=pause
this.mouseovercheck1273=0
this.delay1273=delay
this.degree1273=10 //initial opacity degree (10%)
this.curimageindex1273=0
this.nextimageindex1273=1
fadearray1273[fadearray1273.length]=this
this.slideshowid1273=fadearray1273.length-1
this.canvasbase1273="canvas1273"+this.slideshowid1273
this.curcanvas1273=this.canvasbase1273+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1273=theimages
this.imageborder1273=parseInt(borderwidth)
this.postimages1273=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1273[p]=new Image()
this.postimages1273[p].src=theimages[p][0]
this.postimages1273[p].alt=theimages[p][3]
}

var fadewidth1273=fadewidth+this.imageborder1273*2
var fadeheight1273=fadeheight+this.imageborder1273*2

if (iebrowser1273&&dom1273||dom1273) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1273'+this.slideshowid1273+'" class="slide-show-wrapper-1273" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1273+'_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:'+fadebgcolor1273+'"></div><div id="'+this.canvasbase1273+'_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:'+fadebgcolor1273+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1273-content-with-border" name="defaultslide1273'+this.slideshowid1273+'" src="'+this.postimages1273[0].src+'" alt="'+this.postimages1273[0].alt+'"></div>')

if (iebrowser1273&&dom1273||dom1273) //if IE5+ or modern browsers such as Firefox
this.startit1273()
else{
this.curimageindex1273++
setInterval("fadearray1273["+this.slideshowid1273+"].rotateimage1273()", this.delay1273)
}
}





function fadepic1273(obj1273){
if (obj1273.degree1273<100){
obj1273.degree1273+=10
if (obj1273.tempobj1273.filters&&obj1273.tempobj1273.filters[0]){
if (typeof obj1273.tempobj1273.filters[0].opacity=="number") //if IE6+
obj1273.tempobj1273.filters[0].opacity=obj1273.degree1273
else //else if IE5.5-
obj1273.tempobj1273.style.filter="alpha(opacity="+obj1273.degree1273+")"
}
else if (obj1273.tempobj1273.style.MozOpacity)
obj1273.tempobj1273.style.MozOpacity=obj1273.degree1273/101
else if (obj1273.tempobj1273.style.KhtmlOpacity)
obj1273.tempobj1273.style.KhtmlOpacity=obj1273.degree1273/100
else if (obj1273.tempobj1273.style.opacity&&!obj1273.tempobj1273.filters)
obj1273.tempobj1273.style.opacity=obj1273.degree1273/101
}
else{
clearInterval(fadeclear1273[obj1273.slideshowid1273])
obj1273.nextcanvas1273=(obj1273.curcanvas1273==obj1273.canvasbase1273+"_0")? obj1273.canvasbase1273+"_0" : obj1273.canvasbase1273+"_1"
obj1273.tempobj1273=iebrowser1273? iebrowser1273[obj1273.nextcanvas1273] : document.getElementById(obj1273.nextcanvas1273)
obj1273.populateslide1273(obj1273.tempobj1273, obj1273.nextimageindex1273)
obj1273.nextimageindex1273=(obj1273.nextimageindex1273<obj1273.postimages1273.length-1)? obj1273.nextimageindex1273+1 : 0
setTimeout("fadearray1273["+obj1273.slideshowid1273+"].rotateimage1273()", obj1273.delay1273)
}
}


fadeshow1273.prototype.populateslide1273=function(picobj1273, picindex1273){
var slideHTML1273=""
if (this.theimages1273[picindex1273][1]!="") //if associated link exists for image
slideHTML1273='<a href="'+this.theimages1273[picindex1273][1]+'" target="'+this.theimages1273[picindex1273][2]+'">'
slideHTML1273+='<img class="edu-il-ws-1273-content-with-border" src="'+this.postimages1273[picindex1273].src+'" alt="'+this.postimages1273[picindex1273].alt+'" border="'+this.imageborder1273+'px">'
if (this.theimages1273[picindex1273][1]!="") //if associated link exists for image
slideHTML1273+='</a>'
picobj1273.innerHTML=slideHTML1273
}


fadeshow1273.prototype.rotateimage1273=function(){
if (this.pausecheck1273==1) //if pause onMouseover enabled, cache object
var cacheobj1273=this
if (this.mouseovercheck1273==1)
setTimeout(function(){cacheobj1273.rotateimage1273()}, 100)
else if (iebrowser1273&&dom1273||dom1273){
this.resetit1273()
var crossobj1273=this.tempobj1273=iebrowser1273? iebrowser1273[this.curcanvas1273] : document.getElementById(this.curcanvas1273)
crossobj1273.style.zIndex++
fadeclear1273[this.slideshowid1273]=setInterval("fadepic1273(fadearray1273["+this.slideshowid1273+"])",50)
this.curcanvas1273=(this.curcanvas1273==this.canvasbase1273+"_0")? this.canvasbase1273+"_1" : this.canvasbase1273+"_0"
}
else{
var ns4imgobj1273=document.images['defaultslide1273'+this.slideshowid1273]
ns4imgobj1273.src=this.postimages1273[this.curimageindex1273].src
ms4imgobj1273.alt=this.postimages1273[this.curimageindex1273].alt
}
this.curimageindex1273=(this.curimageindex1273<this.postimages1273.length-1)? this.curimageindex1273+1 : 0
}

fadeshow1273.prototype.resetit1273=function(){
this.degree1273=10
var crossobj1273=iebrowser1273? iebrowser1273[this.curcanvas1273] : document.getElementById(this.curcanvas1273)
if (crossobj1273.filters&&crossobj1273.filters[0]){
if (typeof crossobj1273.filters[0].opacity=="number") //if IE6+
crossobj1273.filters(0).opacity=this.degree1273
else //else if IE5.5-
crossobj1273.style.filter="alpha(opacity="+this.degree1273+")"
}
else if (crossobj1273.style.MozOpacity)
crossobj1273.style.MozOpacity=this.degree1273/101
else if (crossobj1273.style.KhtmlOpacity)
crossobj1273.style.KhtmlOpacity=this.degree1273/100
else if (crossobj1273.style.opacity&&!crossobj1273.filters)
crossobj1273.style.opacity=this.degree1273/101
}


fadeshow1273.prototype.startit1273=function(){
var crossobj1273=iebrowser1273? iebrowser1273[this.curcanvas1273] : document.getElementById(this.curcanvas1273)
this.populateslide1273(crossobj1273, this.curimageindex1273)
if (this.pausecheck1273==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1273=this
var crossobjcontainer1273=iebrowser1273? iebrowser1273["master1273"+this.slideshowid1273] : document.getElementById("master1273"+this.slideshowid1273)
crossobjcontainer1273.onmouseover=function(){cacheobj1273.mouseovercheck1273=1}
crossobjcontainer1273.onmouseout=function(){cacheobj1273.mouseovercheck1273=0}
}
this.rotateimage1273()
}
var delay = 2 * 1000;
new fadeshow1273 (fadeimages1273, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
