var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1284{';
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 fadeimages1284=new Array()

fadeimages1284 [0]=["https://illinois.edu/lb/files/2009/10/19/22387.jpg", "", "_new", "Latino Family Visit Day"];

fadeimages1284 [1]=["https://illinois.edu/lb/files/2009/10/19/22385.jpg", "", "_new", "Latino Family Visit Day"];

fadeimages1284 [2]=["https://illinois.edu/lb/files/2009/10/19/22384.jpg", "", "_new", "Latino Family Visit Day"];

fadeimages1284 [3]=["https://illinois.edu/lb/files/2009/10/19/22386.jpg", "", "_new", "Latino Family Visit Day"];

fadeimages1284 [4]=["https://illinois.edu/lb/files/2009/10/19/22382.jpg", "", "_new", "OIIR 2009 Student Leadership Retreat"];

fadeimages1284 [5]=["https://illinois.edu/lb/files/2009/10/19/22381.jpg", "", "_new", "OIIR 2009 Student Leadership Retreat"];

fadeimages1284 [6]=["https://illinois.edu/lb/files/2009/10/19/22383.jpg", "", "_new", "OIIR 2009 Student Leadership Retreat"];

fadeimages1284 [7]=["https://illinois.edu/lb/files/2009/10/05/21989.gif", "http://studentaffairs.illinois.edu/diversity/lfvd.html", "_new", "2009 Latino Family Visit Day"];
var fadebgcolor1284="white"

////NO need to edit beyond here/////////////

var fadearray1284=new Array() //array to cache fadeshow instances
var fadeclear1284=new Array() //array to cache corresponding clearinterval pointers

var dom1284=(document.getElementById) //modern dom browsers
var iebrowser1284=document.all

function fadeshow1284(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1284=pause
this.mouseovercheck1284=0
this.delay1284=delay
this.degree1284=10 //initial opacity degree (10%)
this.curimageindex1284=0
this.nextimageindex1284=1
fadearray1284[fadearray1284.length]=this
this.slideshowid1284=fadearray1284.length-1
this.canvasbase1284="canvas1284"+this.slideshowid1284
this.curcanvas1284=this.canvasbase1284+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1284=theimages
this.imageborder1284=parseInt(borderwidth)
this.postimages1284=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1284[p]=new Image()
this.postimages1284[p].src=theimages[p][0]
this.postimages1284[p].alt=theimages[p][3]
}

var fadewidth1284=fadewidth+this.imageborder1284*2
var fadeheight1284=fadeheight+this.imageborder1284*2

if (iebrowser1284&&dom1284||dom1284) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1284'+this.slideshowid1284+'" class="slide-show-wrapper-1284" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1284+'_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:'+fadebgcolor1284+'"></div><div id="'+this.canvasbase1284+'_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:'+fadebgcolor1284+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1284-content-with-border" name="defaultslide1284'+this.slideshowid1284+'" src="'+this.postimages1284[0].src+'" alt="'+this.postimages1284[0].alt+'"></div>')

if (iebrowser1284&&dom1284||dom1284) //if IE5+ or modern browsers such as Firefox
this.startit1284()
else{
this.curimageindex1284++
setInterval("fadearray1284["+this.slideshowid1284+"].rotateimage1284()", this.delay1284)
}
}





function fadepic1284(obj1284){
if (obj1284.degree1284<100){
obj1284.degree1284+=10
if (obj1284.tempobj1284.filters&&obj1284.tempobj1284.filters[0]){
if (typeof obj1284.tempobj1284.filters[0].opacity=="number") //if IE6+
obj1284.tempobj1284.filters[0].opacity=obj1284.degree1284
else //else if IE5.5-
obj1284.tempobj1284.style.filter="alpha(opacity="+obj1284.degree1284+")"
}
else if (obj1284.tempobj1284.style.MozOpacity)
obj1284.tempobj1284.style.MozOpacity=obj1284.degree1284/101
else if (obj1284.tempobj1284.style.KhtmlOpacity)
obj1284.tempobj1284.style.KhtmlOpacity=obj1284.degree1284/100
else if (obj1284.tempobj1284.style.opacity&&!obj1284.tempobj1284.filters)
obj1284.tempobj1284.style.opacity=obj1284.degree1284/101
}
else{
clearInterval(fadeclear1284[obj1284.slideshowid1284])
obj1284.nextcanvas1284=(obj1284.curcanvas1284==obj1284.canvasbase1284+"_0")? obj1284.canvasbase1284+"_0" : obj1284.canvasbase1284+"_1"
obj1284.tempobj1284=iebrowser1284? iebrowser1284[obj1284.nextcanvas1284] : document.getElementById(obj1284.nextcanvas1284)
obj1284.populateslide1284(obj1284.tempobj1284, obj1284.nextimageindex1284)
obj1284.nextimageindex1284=(obj1284.nextimageindex1284<obj1284.postimages1284.length-1)? obj1284.nextimageindex1284+1 : 0
setTimeout("fadearray1284["+obj1284.slideshowid1284+"].rotateimage1284()", obj1284.delay1284)
}
}


fadeshow1284.prototype.populateslide1284=function(picobj1284, picindex1284){
var slideHTML1284=""
if (this.theimages1284[picindex1284][1]!="") //if associated link exists for image
slideHTML1284='<a href="'+this.theimages1284[picindex1284][1]+'" target="'+this.theimages1284[picindex1284][2]+'">'
slideHTML1284+='<img class="edu-il-ws-1284-content-with-border" src="'+this.postimages1284[picindex1284].src+'" alt="'+this.postimages1284[picindex1284].alt+'" border="'+this.imageborder1284+'px">'
if (this.theimages1284[picindex1284][1]!="") //if associated link exists for image
slideHTML1284+='</a>'
picobj1284.innerHTML=slideHTML1284
}


fadeshow1284.prototype.rotateimage1284=function(){
if (this.pausecheck1284==1) //if pause onMouseover enabled, cache object
var cacheobj1284=this
if (this.mouseovercheck1284==1)
setTimeout(function(){cacheobj1284.rotateimage1284()}, 100)
else if (iebrowser1284&&dom1284||dom1284){
this.resetit1284()
var crossobj1284=this.tempobj1284=iebrowser1284? iebrowser1284[this.curcanvas1284] : document.getElementById(this.curcanvas1284)
crossobj1284.style.zIndex++
fadeclear1284[this.slideshowid1284]=setInterval("fadepic1284(fadearray1284["+this.slideshowid1284+"])",50)
this.curcanvas1284=(this.curcanvas1284==this.canvasbase1284+"_0")? this.canvasbase1284+"_1" : this.canvasbase1284+"_0"
}
else{
var ns4imgobj1284=document.images['defaultslide1284'+this.slideshowid1284]
ns4imgobj1284.src=this.postimages1284[this.curimageindex1284].src
ms4imgobj1284.alt=this.postimages1284[this.curimageindex1284].alt
}
this.curimageindex1284=(this.curimageindex1284<this.postimages1284.length-1)? this.curimageindex1284+1 : 0
}

fadeshow1284.prototype.resetit1284=function(){
this.degree1284=10
var crossobj1284=iebrowser1284? iebrowser1284[this.curcanvas1284] : document.getElementById(this.curcanvas1284)
if (crossobj1284.filters&&crossobj1284.filters[0]){
if (typeof crossobj1284.filters[0].opacity=="number") //if IE6+
crossobj1284.filters(0).opacity=this.degree1284
else //else if IE5.5-
crossobj1284.style.filter="alpha(opacity="+this.degree1284+")"
}
else if (crossobj1284.style.MozOpacity)
crossobj1284.style.MozOpacity=this.degree1284/101
else if (crossobj1284.style.KhtmlOpacity)
crossobj1284.style.KhtmlOpacity=this.degree1284/100
else if (crossobj1284.style.opacity&&!crossobj1284.filters)
crossobj1284.style.opacity=this.degree1284/101
}


fadeshow1284.prototype.startit1284=function(){
var crossobj1284=iebrowser1284? iebrowser1284[this.curcanvas1284] : document.getElementById(this.curcanvas1284)
this.populateslide1284(crossobj1284, this.curimageindex1284)
if (this.pausecheck1284==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1284=this
var crossobjcontainer1284=iebrowser1284? iebrowser1284["master1284"+this.slideshowid1284] : document.getElementById("master1284"+this.slideshowid1284)
crossobjcontainer1284.onmouseover=function(){cacheobj1284.mouseovercheck1284=1}
crossobjcontainer1284.onmouseout=function(){cacheobj1284.mouseovercheck1284=0}
}
this.rotateimage1284()
}
var delay = 3 * 1000;
new fadeshow1284 (fadeimages1284, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
