var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1267{';
wsContentVar += '        width:736px;';
wsContentVar += '        height:416px;}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-1267-content-with-border{';
wsContentVar += '        width:632px;';
wsContentVar += '        height:416px;';
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 fadeimages1267=new Array()

fadeimages1267 [0]=["http://www.pricehillcivicclub.com/images/1.jpg", "", "", ""];

fadeimages1267 [1]=["http://www.pricehillcivicclub.com/images/6.jpg", "", "", ""];

fadeimages1267 [2]=["http://www.pricehillcivicclub.com/images/7.jpg", "", "", ""];

fadeimages1267 [3]=["http://www.pricehillcivicclub.com/images/8.jpg", "", "", ""];

fadeimages1267 [4]=["http://www.pricehillcivicclub.com/images/9.jpg", "", "", ""];

//fadeimages1267 [5]=["http://www.pricehillcivicclub.com/images/6.jpg", "", "", ""];

//fadeimages1267 [6]=["http://www.pricehillcivicclub.com/images/7.jpg", "", "", ""];

//fadeimages1267 [7]=["http://www.pricehillcivicclub.com/images/8.jpg", "", "", ""];

//fadeimages1267 [8]=["http://www.pricehillcivicclub.com/images/9.jpg", "", "", ""];

var fadebgcolor1267="white"

////NO need to edit beyond here/////////////

var fadearray1267=new Array() //array to cache fadeshow instances
var fadeclear1267=new Array() //array to cache corresponding clearinterval pointers

var dom1267=(document.getElementById) //modern dom browsers
var iebrowser1267=document.all

function fadeshow1267(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1267=pause
this.mouseovercheck1267=0
this.delay1267=delay
this.degree1267=10 //initial opacity degree (10%)
this.curimageindex1267=0
this.nextimageindex1267=1
fadearray1267[fadearray1267.length]=this
this.slideshowid1267=fadearray1267.length-1
this.canvasbase1267="canvas1267"+this.slideshowid1267
this.curcanvas1267=this.canvasbase1267+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1267=theimages
this.imageborder1267=parseInt(borderwidth)
this.postimages1267=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1267[p]=new Image()
this.postimages1267[p].src=theimages[p][0]
this.postimages1267[p].alt=theimages[p][3]
}

var fadewidth1267=fadewidth+this.imageborder1267*2
var fadeheight1267=fadeheight+this.imageborder1267*2

if (iebrowser1267&&dom1267||dom1267) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1267'+this.slideshowid1267+'" class="slide-show-wrapper-1267" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1267+'_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:'+fadebgcolor1267+'"></div><div id="'+this.canvasbase1267+'_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:'+fadebgcolor1267+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1267-content-with-border" name="defaultslide1267'+this.slideshowid1267+'" src="'+this.postimages1267[0].src+'" alt="'+this.postimages1267[0].alt+'"></div>')

if (iebrowser1267&&dom1267||dom1267) //if IE5+ or modern browsers such as Firefox
this.startit1267()
else{
this.curimageindex1267++
setInterval("fadearray1267["+this.slideshowid1267+"].rotateimage1267()", this.delay1267)
}
}





function fadepic1267(obj1267){
if (obj1267.degree1267<100){
obj1267.degree1267+=5
if (obj1267.tempobj1267.filters&&obj1267.tempobj1267.filters[0]){
if (typeof obj1267.tempobj1267.filters[0].opacity=="number") //if IE6+
obj1267.tempobj1267.filters[0].opacity=obj1267.degree1267
else //else if IE5.5-
obj1267.tempobj1267.style.filter="alpha(opacity="+obj1267.degree1267+")"
}
else if (obj1267.tempobj1267.style.MozOpacity)
obj1267.tempobj1267.style.MozOpacity=obj1267.degree1267/101
else if (obj1267.tempobj1267.style.KhtmlOpacity)
obj1267.tempobj1267.style.KhtmlOpacity=obj1267.degree1267/100
else if (obj1267.tempobj1267.style.opacity&&!obj1267.tempobj1267.filters)
obj1267.tempobj1267.style.opacity=obj1267.degree1267/101
}
else{
clearInterval(fadeclear1267[obj1267.slideshowid1267])
obj1267.nextcanvas1267=(obj1267.curcanvas1267==obj1267.canvasbase1267+"_0")? obj1267.canvasbase1267+"_0" : obj1267.canvasbase1267+"_1"
obj1267.tempobj1267=iebrowser1267? iebrowser1267[obj1267.nextcanvas1267] : document.getElementById(obj1267.nextcanvas1267)
obj1267.populateslide1267(obj1267.tempobj1267, obj1267.nextimageindex1267)
obj1267.nextimageindex1267=(obj1267.nextimageindex1267<obj1267.postimages1267.length-1)? obj1267.nextimageindex1267+1 : 0
setTimeout("fadearray1267["+obj1267.slideshowid1267+"].rotateimage1267()", obj1267.delay1267)
}
}


fadeshow1267.prototype.populateslide1267=function(picobj1267, picindex1267){
var slideHTML1267=""
if (this.theimages1267[picindex1267][1]!="") //if associated link exists for image
slideHTML1267='<a href="'+this.theimages1267[picindex1267][1]+'" target="'+this.theimages1267[picindex1267][2]+'">'
slideHTML1267+='<img class="edu-il-ws-1267-content-with-border" src="'+this.postimages1267[picindex1267].src+'" alt="'+this.postimages1267[picindex1267].alt+'" border="'+this.imageborder1267+'px">'
if (this.theimages1267[picindex1267][1]!="") //if associated link exists for image
slideHTML1267+='</a>'
picobj1267.innerHTML=slideHTML1267
}


fadeshow1267.prototype.rotateimage1267=function(){
if (this.pausecheck1267==1) //if pause onMouseover enabled, cache object
var cacheobj1267=this
if (this.mouseovercheck1267==1)
setTimeout(function(){cacheobj1267.rotateimage1267()}, 100)
else if (iebrowser1267&&dom1267||dom1267){
this.resetit1267()
var crossobj1267=this.tempobj1267=iebrowser1267? iebrowser1267[this.curcanvas1267] : document.getElementById(this.curcanvas1267)
crossobj1267.style.zIndex++
fadeclear1267[this.slideshowid1267]=setInterval("fadepic1267(fadearray1267["+this.slideshowid1267+"])",50)
this.curcanvas1267=(this.curcanvas1267==this.canvasbase1267+"_0")? this.canvasbase1267+"_1" : this.canvasbase1267+"_0"
}
else{
var ns4imgobj1267=document.images['defaultslide1267'+this.slideshowid1267]
ns4imgobj1267.src=this.postimages1267[this.curimageindex1267].src
ms4imgobj1267.alt=this.postimages1267[this.curimageindex1267].alt
}
this.curimageindex1267=(this.curimageindex1267<this.postimages1267.length-1)? this.curimageindex1267+1 : 0
}

fadeshow1267.prototype.resetit1267=function(){
this.degree1267=10
var crossobj1267=iebrowser1267? iebrowser1267[this.curcanvas1267] : document.getElementById(this.curcanvas1267)
if (crossobj1267.filters&&crossobj1267.filters[0]){
if (typeof crossobj1267.filters[0].opacity=="number") //if IE6+
crossobj1267.filters(0).opacity=this.degree1267
else //else if IE5.5-
crossobj1267.style.filter="alpha(opacity="+this.degree1267+")"
}
else if (crossobj1267.style.MozOpacity)
crossobj1267.style.MozOpacity=this.degree1267/101
else if (crossobj1267.style.KhtmlOpacity)
crossobj1267.style.KhtmlOpacity=this.degree1267/100
else if (crossobj1267.style.opacity&&!crossobj1267.filters)
crossobj1267.style.opacity=this.degree1267/101
}


fadeshow1267.prototype.startit1267=function(){
var crossobj1267=iebrowser1267? iebrowser1267[this.curcanvas1267] : document.getElementById(this.curcanvas1267)
this.populateslide1267(crossobj1267, this.curimageindex1267)
if (this.pausecheck1267==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1267=this
var crossobjcontainer1267=iebrowser1267? iebrowser1267["master1267"+this.slideshowid1267] : document.getElementById("master1267"+this.slideshowid1267)
crossobjcontainer1267.onmouseover=function(){cacheobj1267.mouseovercheck1267=1}
crossobjcontainer1267.onmouseout=function(){cacheobj1267.mouseovercheck1267=0}
}
this.rotateimage1267()
}
var delay = 3 * 1000;
new fadeshow1267 (fadeimages1267, 250, 250, 0, delay, 1, 'truetrue')

//document.write("<img src=\"http://illinois.edu/assets/images/homepage/illinoisFlashOverlay.png\" style=\"position:relative;top:-416px;z-index:2000\" alt=\"\" xmlns:xalan=\"http://xml.apache.org/xslt\">");

