var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1494{';
wsContentVar += '        width:556px;';
wsContentVar += '        height:860px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-1494-content-with-border{';
wsContentVar += '   height860px;';
wsContentVar += '   width:556px;';
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 fadeimages1494=new Array()
var fadebgcolor1494="white"

////NO need to edit beyond here/////////////

var fadearray1494=new Array() //array to cache fadeshow instances
var fadeclear1494=new Array() //array to cache corresponding clearinterval pointers

var dom1494=(document.getElementById) //modern dom browsers
var iebrowser1494=document.all

function fadeshow1494(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1494=pause
this.mouseovercheck1494=0
this.delay1494=delay
this.degree1494=10 //initial opacity degree (10%)
this.curimageindex1494=0
this.nextimageindex1494=1
fadearray1494[fadearray1494.length]=this
this.slideshowid1494=fadearray1494.length-1
this.canvasbase1494="canvas1494"+this.slideshowid1494
this.curcanvas1494=this.canvasbase1494+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1494=theimages
this.imageborder1494=parseInt(borderwidth)
this.postimages1494=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1494[p]=new Image()
this.postimages1494[p].src=theimages[p][0]
this.postimages1494[p].alt=theimages[p][3]
}

var fadewidth1494=fadewidth+this.imageborder1494*2
var fadeheight1494=fadeheight+this.imageborder1494*2

if (iebrowser1494&&dom1494||dom1494) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1494'+this.slideshowid1494+'" class="slide-show-wrapper-1494" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1494+'_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:'+fadebgcolor1494+'"></div><div id="'+this.canvasbase1494+'_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:'+fadebgcolor1494+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1494-content-with-border" name="defaultslide1494'+this.slideshowid1494+'" src="'+this.postimages1494[0].src+'" alt="'+this.postimages1494[0].alt+'"></div>')

if (iebrowser1494&&dom1494||dom1494) //if IE5+ or modern browsers such as Firefox
this.startit1494()
else{
this.curimageindex1494++
setInterval("fadearray1494["+this.slideshowid1494+"].rotateimage1494()", this.delay1494)
}
}





function fadepic1494(obj1494){
if (obj1494.degree1494<100){
obj1494.degree1494+=10
if (obj1494.tempobj1494.filters&&obj1494.tempobj1494.filters[0]){
if (typeof obj1494.tempobj1494.filters[0].opacity=="number") //if IE6+
obj1494.tempobj1494.filters[0].opacity=obj1494.degree1494
else //else if IE5.5-
obj1494.tempobj1494.style.filter="alpha(opacity="+obj1494.degree1494+")"
}
else if (obj1494.tempobj1494.style.MozOpacity)
obj1494.tempobj1494.style.MozOpacity=obj1494.degree1494/101
else if (obj1494.tempobj1494.style.KhtmlOpacity)
obj1494.tempobj1494.style.KhtmlOpacity=obj1494.degree1494/100
else if (obj1494.tempobj1494.style.opacity&&!obj1494.tempobj1494.filters)
obj1494.tempobj1494.style.opacity=obj1494.degree1494/101
}
else{
clearInterval(fadeclear1494[obj1494.slideshowid1494])
obj1494.nextcanvas1494=(obj1494.curcanvas1494==obj1494.canvasbase1494+"_0")? obj1494.canvasbase1494+"_0" : obj1494.canvasbase1494+"_1"
obj1494.tempobj1494=iebrowser1494? iebrowser1494[obj1494.nextcanvas1494] : document.getElementById(obj1494.nextcanvas1494)
obj1494.populateslide1494(obj1494.tempobj1494, obj1494.nextimageindex1494)
obj1494.nextimageindex1494=(obj1494.nextimageindex1494<obj1494.postimages1494.length-1)? obj1494.nextimageindex1494+1 : 0
setTimeout("fadearray1494["+obj1494.slideshowid1494+"].rotateimage1494()", obj1494.delay1494)
}
}


fadeshow1494.prototype.populateslide1494=function(picobj1494, picindex1494){
var slideHTML1494=""
if (this.theimages1494[picindex1494][1]!="") //if associated link exists for image
slideHTML1494='<a href="'+this.theimages1494[picindex1494][1]+'" target="'+this.theimages1494[picindex1494][2]+'">'
slideHTML1494+='<img class="edu-il-ws-1494-content-with-border" src="'+this.postimages1494[picindex1494].src+'" alt="'+this.postimages1494[picindex1494].alt+'" border="'+this.imageborder1494+'px">'
if (this.theimages1494[picindex1494][1]!="") //if associated link exists for image
slideHTML1494+='</a>'
picobj1494.innerHTML=slideHTML1494
}


fadeshow1494.prototype.rotateimage1494=function(){
if (this.pausecheck1494==1) //if pause onMouseover enabled, cache object
var cacheobj1494=this
if (this.mouseovercheck1494==1)
setTimeout(function(){cacheobj1494.rotateimage1494()}, 100)
else if (iebrowser1494&&dom1494||dom1494){
this.resetit1494()
var crossobj1494=this.tempobj1494=iebrowser1494? iebrowser1494[this.curcanvas1494] : document.getElementById(this.curcanvas1494)
crossobj1494.style.zIndex++
fadeclear1494[this.slideshowid1494]=setInterval("fadepic1494(fadearray1494["+this.slideshowid1494+"])",50)
this.curcanvas1494=(this.curcanvas1494==this.canvasbase1494+"_0")? this.canvasbase1494+"_1" : this.canvasbase1494+"_0"
}
else{
var ns4imgobj1494=document.images['defaultslide1494'+this.slideshowid1494]
ns4imgobj1494.src=this.postimages1494[this.curimageindex1494].src
ms4imgobj1494.alt=this.postimages1494[this.curimageindex1494].alt
}
this.curimageindex1494=(this.curimageindex1494<this.postimages1494.length-1)? this.curimageindex1494+1 : 0
}

fadeshow1494.prototype.resetit1494=function(){
this.degree1494=10
var crossobj1494=iebrowser1494? iebrowser1494[this.curcanvas1494] : document.getElementById(this.curcanvas1494)
if (crossobj1494.filters&&crossobj1494.filters[0]){
if (typeof crossobj1494.filters[0].opacity=="number") //if IE6+
crossobj1494.filters(0).opacity=this.degree1494
else //else if IE5.5-
crossobj1494.style.filter="alpha(opacity="+this.degree1494+")"
}
else if (crossobj1494.style.MozOpacity)
crossobj1494.style.MozOpacity=this.degree1494/101
else if (crossobj1494.style.KhtmlOpacity)
crossobj1494.style.KhtmlOpacity=this.degree1494/100
else if (crossobj1494.style.opacity&&!crossobj1494.filters)
crossobj1494.style.opacity=this.degree1494/101
}


fadeshow1494.prototype.startit1494=function(){
var crossobj1494=iebrowser1494? iebrowser1494[this.curcanvas1494] : document.getElementById(this.curcanvas1494)
this.populateslide1494(crossobj1494, this.curimageindex1494)
if (this.pausecheck1494==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1494=this
var crossobjcontainer1494=iebrowser1494? iebrowser1494["master1494"+this.slideshowid1494] : document.getElementById("master1494"+this.slideshowid1494)
crossobjcontainer1494.onmouseover=function(){cacheobj1494.mouseovercheck1494=1}
crossobjcontainer1494.onmouseout=function(){cacheobj1494.mouseovercheck1494=0}
}
this.rotateimage1494()
}
var delay = 5 * 1000;
new fadeshow1494 (fadeimages1494, 250, 250, 0, delay, 1, 'truetrue')

document.write("");
