var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1107{';
wsContentVar += '        width:1000px;';
wsContentVar += '        height:176px;';
wsContentVar += '        xxxborder:1px solid black;';
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 fadeimages1107=new Array()

fadeimages1107 [0]=["https://illinois.edu/lb/files/2009/08/20/20875.jpg", "http://ev11.evenue.net/cgi-bin/ncommerce3/SEGetEventList?groupCode=FB&amp;linkID=illinois&amp;shopperContext=&amp;caller=&amp;appCode=", "", "Single Game Tickets"];
var fadebgcolor1107="white"

////NO need to edit beyond here/////////////

var fadearray1107=new Array() //array to cache fadeshow instances
var fadeclear1107=new Array() //array to cache corresponding clearinterval pointers

var dom1107=(document.getElementById) //modern dom browsers
var iebrowser1107=document.all

function fadeshow1107(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1107=pause
this.mouseovercheck1107=0
this.delay1107=delay
this.degree1107=10 //initial opacity degree (10%)
this.curimageindex1107=0
this.nextimageindex1107=1
fadearray1107[fadearray1107.length]=this
this.slideshowid1107=fadearray1107.length-1
this.canvasbase1107="canvas1107"+this.slideshowid1107
this.curcanvas1107=this.canvasbase1107+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1107=theimages
this.imageborder1107=parseInt(borderwidth)
this.postimages1107=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1107[p]=new Image()
this.postimages1107[p].src=theimages[p][0]
this.postimages1107[p].alt=theimages[p][3]
}

var fadewidth1107=fadewidth+this.imageborder1107*2
var fadeheight1107=fadeheight+this.imageborder1107*2

if (iebrowser1107&&dom1107||dom1107) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1107'+this.slideshowid1107+'" class="slide-show-wrapper-1107" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1107+'_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:'+fadebgcolor1107+'"></div><div id="'+this.canvasbase1107+'_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:'+fadebgcolor1107+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1107-content-with-border" name="defaultslide1107'+this.slideshowid1107+'" src="'+this.postimages1107[0].src+'" alt="'+this.postimages1107[0].alt+'"></div>')

if (iebrowser1107&&dom1107||dom1107) //if IE5+ or modern browsers such as Firefox
this.startit1107()
else{
this.curimageindex1107++
setInterval("fadearray1107["+this.slideshowid1107+"].rotateimage1107()", this.delay1107)
}
}





function fadepic1107(obj1107){
if (obj1107.degree1107<100){
obj1107.degree1107+=10
if (obj1107.tempobj1107.filters&&obj1107.tempobj1107.filters[0]){
if (typeof obj1107.tempobj1107.filters[0].opacity=="number") //if IE6+
obj1107.tempobj1107.filters[0].opacity=obj1107.degree1107
else //else if IE5.5-
obj1107.tempobj1107.style.filter="alpha(opacity="+obj1107.degree1107+")"
}
else if (obj1107.tempobj1107.style.MozOpacity)
obj1107.tempobj1107.style.MozOpacity=obj1107.degree1107/101
else if (obj1107.tempobj1107.style.KhtmlOpacity)
obj1107.tempobj1107.style.KhtmlOpacity=obj1107.degree1107/100
else if (obj1107.tempobj1107.style.opacity&&!obj1107.tempobj1107.filters)
obj1107.tempobj1107.style.opacity=obj1107.degree1107/101
}
else{
clearInterval(fadeclear1107[obj1107.slideshowid1107])
obj1107.nextcanvas1107=(obj1107.curcanvas1107==obj1107.canvasbase1107+"_0")? obj1107.canvasbase1107+"_0" : obj1107.canvasbase1107+"_1"
obj1107.tempobj1107=iebrowser1107? iebrowser1107[obj1107.nextcanvas1107] : document.getElementById(obj1107.nextcanvas1107)
obj1107.populateslide1107(obj1107.tempobj1107, obj1107.nextimageindex1107)
obj1107.nextimageindex1107=(obj1107.nextimageindex1107<obj1107.postimages1107.length-1)? obj1107.nextimageindex1107+1 : 0
setTimeout("fadearray1107["+obj1107.slideshowid1107+"].rotateimage1107()", obj1107.delay1107)
}
}


fadeshow1107.prototype.populateslide1107=function(picobj1107, picindex1107){
var slideHTML1107=""
if (this.theimages1107[picindex1107][1]!="") //if associated link exists for image
slideHTML1107='<a href="'+this.theimages1107[picindex1107][1]+'" target="'+this.theimages1107[picindex1107][2]+'">'
slideHTML1107+='<img class="edu-il-ws-1107-content-with-border" src="'+this.postimages1107[picindex1107].src+'" alt="'+this.postimages1107[picindex1107].alt+'" border="'+this.imageborder1107+'px">'
if (this.theimages1107[picindex1107][1]!="") //if associated link exists for image
slideHTML1107+='</a>'
picobj1107.innerHTML=slideHTML1107
}


fadeshow1107.prototype.rotateimage1107=function(){
if (this.pausecheck1107==1) //if pause onMouseover enabled, cache object
var cacheobj1107=this
if (this.mouseovercheck1107==1)
setTimeout(function(){cacheobj1107.rotateimage1107()}, 100)
else if (iebrowser1107&&dom1107||dom1107){
this.resetit1107()
var crossobj1107=this.tempobj1107=iebrowser1107? iebrowser1107[this.curcanvas1107] : document.getElementById(this.curcanvas1107)
crossobj1107.style.zIndex++
fadeclear1107[this.slideshowid1107]=setInterval("fadepic1107(fadearray1107["+this.slideshowid1107+"])",50)
this.curcanvas1107=(this.curcanvas1107==this.canvasbase1107+"_0")? this.canvasbase1107+"_1" : this.canvasbase1107+"_0"
}
else{
var ns4imgobj1107=document.images['defaultslide1107'+this.slideshowid1107]
ns4imgobj1107.src=this.postimages1107[this.curimageindex1107].src
ms4imgobj1107.alt=this.postimages1107[this.curimageindex1107].alt
}
this.curimageindex1107=(this.curimageindex1107<this.postimages1107.length-1)? this.curimageindex1107+1 : 0
}

fadeshow1107.prototype.resetit1107=function(){
this.degree1107=10
var crossobj1107=iebrowser1107? iebrowser1107[this.curcanvas1107] : document.getElementById(this.curcanvas1107)
if (crossobj1107.filters&&crossobj1107.filters[0]){
if (typeof crossobj1107.filters[0].opacity=="number") //if IE6+
crossobj1107.filters(0).opacity=this.degree1107
else //else if IE5.5-
crossobj1107.style.filter="alpha(opacity="+this.degree1107+")"
}
else if (crossobj1107.style.MozOpacity)
crossobj1107.style.MozOpacity=this.degree1107/101
else if (crossobj1107.style.KhtmlOpacity)
crossobj1107.style.KhtmlOpacity=this.degree1107/100
else if (crossobj1107.style.opacity&&!crossobj1107.filters)
crossobj1107.style.opacity=this.degree1107/101
}


fadeshow1107.prototype.startit1107=function(){
var crossobj1107=iebrowser1107? iebrowser1107[this.curcanvas1107] : document.getElementById(this.curcanvas1107)
this.populateslide1107(crossobj1107, this.curimageindex1107)
if (this.pausecheck1107==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1107=this
var crossobjcontainer1107=iebrowser1107? iebrowser1107["master1107"+this.slideshowid1107] : document.getElementById("master1107"+this.slideshowid1107)
crossobjcontainer1107.onmouseover=function(){cacheobj1107.mouseovercheck1107=1}
crossobjcontainer1107.onmouseout=function(){cacheobj1107.mouseovercheck1107=0}
}
this.rotateimage1107()
}
var delay = 7 * 1000;
new fadeshow1107 (fadeimages1107, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
