var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1274{';
wsContentVar += '        width:754px;';
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 fadeimages1274=new Array()

fadeimages1274 [0]=["https://illinois.edu/lb/files/2009/10/19/22358.jpg", "http://studentaffairs.illinois.edu/sagallery.html", "", "Student Affairs: 'Reconnect' Reunion"];

fadeimages1274 [1]=["https://illinois.edu/lb/files/2009/09/04/21350.jpg", "http://studentaffairs.illinois.edu/alum/reunion.html", "", "Student Affairs: 'Re-connect' Reunion"];

fadeimages1274 [2]=["https://illinois.edu/lb/files/2009/05/15/10493.jpg", "http://studentaffairs.illinois.edu/alum/cheryl_Lamm.html", "", ""];

fadeimages1274 [3]=["https://illinois.edu/lb/files/2009/05/01/10221.jpg", "http://www.housing.illinois.edu/Construction/Ikenberry%20Commons%20Construction.aspx", "", ""];

fadeimages1274 [4]=["https://illinois.edu/lb/files/2009/04/30/10159.jpg", "http://www.facebook.com", "", ""];
var fadebgcolor1274="white"

////NO need to edit beyond here/////////////

var fadearray1274=new Array() //array to cache fadeshow instances
var fadeclear1274=new Array() //array to cache corresponding clearinterval pointers

var dom1274=(document.getElementById) //modern dom browsers
var iebrowser1274=document.all

function fadeshow1274(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1274=pause
this.mouseovercheck1274=0
this.delay1274=delay
this.degree1274=10 //initial opacity degree (10%)
this.curimageindex1274=0
this.nextimageindex1274=1
fadearray1274[fadearray1274.length]=this
this.slideshowid1274=fadearray1274.length-1
this.canvasbase1274="canvas1274"+this.slideshowid1274
this.curcanvas1274=this.canvasbase1274+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1274=theimages
this.imageborder1274=parseInt(borderwidth)
this.postimages1274=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1274[p]=new Image()
this.postimages1274[p].src=theimages[p][0]
this.postimages1274[p].alt=theimages[p][3]
}

var fadewidth1274=fadewidth+this.imageborder1274*2
var fadeheight1274=fadeheight+this.imageborder1274*2

if (iebrowser1274&&dom1274||dom1274) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1274'+this.slideshowid1274+'" class="slide-show-wrapper-1274" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1274+'_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:'+fadebgcolor1274+'"></div><div id="'+this.canvasbase1274+'_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:'+fadebgcolor1274+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1274-content-with-border" name="defaultslide1274'+this.slideshowid1274+'" src="'+this.postimages1274[0].src+'" alt="'+this.postimages1274[0].alt+'"></div>')

if (iebrowser1274&&dom1274||dom1274) //if IE5+ or modern browsers such as Firefox
this.startit1274()
else{
this.curimageindex1274++
setInterval("fadearray1274["+this.slideshowid1274+"].rotateimage1274()", this.delay1274)
}
}





function fadepic1274(obj1274){
if (obj1274.degree1274<100){
obj1274.degree1274+=10
if (obj1274.tempobj1274.filters&&obj1274.tempobj1274.filters[0]){
if (typeof obj1274.tempobj1274.filters[0].opacity=="number") //if IE6+
obj1274.tempobj1274.filters[0].opacity=obj1274.degree1274
else //else if IE5.5-
obj1274.tempobj1274.style.filter="alpha(opacity="+obj1274.degree1274+")"
}
else if (obj1274.tempobj1274.style.MozOpacity)
obj1274.tempobj1274.style.MozOpacity=obj1274.degree1274/101
else if (obj1274.tempobj1274.style.KhtmlOpacity)
obj1274.tempobj1274.style.KhtmlOpacity=obj1274.degree1274/100
else if (obj1274.tempobj1274.style.opacity&&!obj1274.tempobj1274.filters)
obj1274.tempobj1274.style.opacity=obj1274.degree1274/101
}
else{
clearInterval(fadeclear1274[obj1274.slideshowid1274])
obj1274.nextcanvas1274=(obj1274.curcanvas1274==obj1274.canvasbase1274+"_0")? obj1274.canvasbase1274+"_0" : obj1274.canvasbase1274+"_1"
obj1274.tempobj1274=iebrowser1274? iebrowser1274[obj1274.nextcanvas1274] : document.getElementById(obj1274.nextcanvas1274)
obj1274.populateslide1274(obj1274.tempobj1274, obj1274.nextimageindex1274)
obj1274.nextimageindex1274=(obj1274.nextimageindex1274<obj1274.postimages1274.length-1)? obj1274.nextimageindex1274+1 : 0
setTimeout("fadearray1274["+obj1274.slideshowid1274+"].rotateimage1274()", obj1274.delay1274)
}
}


fadeshow1274.prototype.populateslide1274=function(picobj1274, picindex1274){
var slideHTML1274=""
if (this.theimages1274[picindex1274][1]!="") //if associated link exists for image
slideHTML1274='<a href="'+this.theimages1274[picindex1274][1]+'" target="'+this.theimages1274[picindex1274][2]+'">'
slideHTML1274+='<img class="edu-il-ws-1274-content-with-border" src="'+this.postimages1274[picindex1274].src+'" alt="'+this.postimages1274[picindex1274].alt+'" border="'+this.imageborder1274+'px">'
if (this.theimages1274[picindex1274][1]!="") //if associated link exists for image
slideHTML1274+='</a>'
picobj1274.innerHTML=slideHTML1274
}


fadeshow1274.prototype.rotateimage1274=function(){
if (this.pausecheck1274==1) //if pause onMouseover enabled, cache object
var cacheobj1274=this
if (this.mouseovercheck1274==1)
setTimeout(function(){cacheobj1274.rotateimage1274()}, 100)
else if (iebrowser1274&&dom1274||dom1274){
this.resetit1274()
var crossobj1274=this.tempobj1274=iebrowser1274? iebrowser1274[this.curcanvas1274] : document.getElementById(this.curcanvas1274)
crossobj1274.style.zIndex++
fadeclear1274[this.slideshowid1274]=setInterval("fadepic1274(fadearray1274["+this.slideshowid1274+"])",50)
this.curcanvas1274=(this.curcanvas1274==this.canvasbase1274+"_0")? this.canvasbase1274+"_1" : this.canvasbase1274+"_0"
}
else{
var ns4imgobj1274=document.images['defaultslide1274'+this.slideshowid1274]
ns4imgobj1274.src=this.postimages1274[this.curimageindex1274].src
ms4imgobj1274.alt=this.postimages1274[this.curimageindex1274].alt
}
this.curimageindex1274=(this.curimageindex1274<this.postimages1274.length-1)? this.curimageindex1274+1 : 0
}

fadeshow1274.prototype.resetit1274=function(){
this.degree1274=10
var crossobj1274=iebrowser1274? iebrowser1274[this.curcanvas1274] : document.getElementById(this.curcanvas1274)
if (crossobj1274.filters&&crossobj1274.filters[0]){
if (typeof crossobj1274.filters[0].opacity=="number") //if IE6+
crossobj1274.filters(0).opacity=this.degree1274
else //else if IE5.5-
crossobj1274.style.filter="alpha(opacity="+this.degree1274+")"
}
else if (crossobj1274.style.MozOpacity)
crossobj1274.style.MozOpacity=this.degree1274/101
else if (crossobj1274.style.KhtmlOpacity)
crossobj1274.style.KhtmlOpacity=this.degree1274/100
else if (crossobj1274.style.opacity&&!crossobj1274.filters)
crossobj1274.style.opacity=this.degree1274/101
}


fadeshow1274.prototype.startit1274=function(){
var crossobj1274=iebrowser1274? iebrowser1274[this.curcanvas1274] : document.getElementById(this.curcanvas1274)
this.populateslide1274(crossobj1274, this.curimageindex1274)
if (this.pausecheck1274==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1274=this
var crossobjcontainer1274=iebrowser1274? iebrowser1274["master1274"+this.slideshowid1274] : document.getElementById("master1274"+this.slideshowid1274)
crossobjcontainer1274.onmouseover=function(){cacheobj1274.mouseovercheck1274=1}
crossobjcontainer1274.onmouseout=function(){cacheobj1274.mouseovercheck1274=0}
}
this.rotateimage1274()
}
var delay = 3 * 1000;
new fadeshow1274 (fadeimages1274, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
