// JavaScript Document<!--

<!-- 
//Set up the caption font in the following style.
//Place the style script in the head of the page.
//-->

//<style>
//.Caption {
//font-family: Arial;
//font-weight: bold;
//color:      #123456;
//}
//</style>

<!-- 
//Place the following script in the head of the page.
//Follow the set-up instructions within the script.
//-->

//<script>

// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 4;

var Picture3 = new Array(); // don't change this

Picture3[1]='images/subcats/307_slide1.jpg';
Picture3[2]='images/subcats/307_slide2.jpg';
Picture3[3]='images/subcats/307_slide3.jpg';

var Picture4 = new Array(); // don't change this

Picture4[1]='images/subcats/101_slide1.jpg';
Picture4[2]='images/subcats/101_slide2.jpg';
Picture4[3]='images/subcats/101_slide3.jpg';
Picture4[4]='images/subcats/101_slide4.jpg';
Picture4[5]='images/subcats/101_slide5.jpg';

var Picture5 = new Array(); // don't change this

Picture5[1]='images/subcats/404_slide1.jpg';
Picture5[2]='images/subcats/404_slide2.jpg';
Picture5[3]='images/subcats/404_slide3.jpg';




// =====================================
// Do not edit anything below this line!
// =====================================

var tss3;
var iss3;
var jss3 = 1;
var pss3 = Picture3.length-1;

var tss4;
var iss4;
var jss4 = 1;
var pss4 = Picture4.length-1;

var tss5;
var iss5;
var jss5 = 1;
var pss5 = Picture5.length-1;

var preLoad3 = new Array();
for (iss3 = 1; iss3 < pss3+1; iss3++) {
preLoad3[iss3] = new Image();
preLoad3[iss3].src = Picture3[iss3];
}

var preLoad4 = new Array();
for (iss4 = 1; iss4 < pss4+1; iss4++) {
preLoad4[iss4] = new Image();
preLoad4[iss4].src = Picture4[iss4];
}

var preLoad5 = new Array();
for (iss5 = 1; iss5 < pss5+1; iss5++) {
preLoad5[iss5] = new Image();
preLoad5[iss5].src = Picture5[iss5];
}


function runSlideShow3(){
if (document.all){
document.images.PictureBox3.style.filter="blendTrans(duration=2)";
document.images.PictureBox3.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox3.filters.blendTrans.Apply();
}
document.images.PictureBox3.src = preLoad3[jss3].src;
//if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) {
document.images.PictureBox3.filters.blendTrans.Play();
}
jss3 = jss3 + 1;
if (jss3 > (pss3)) { 
jss3=1;
}
tss3 = setTimeout('runSlideShow3()', SlideShowSpeed);
}

function runSlideShow4(){
if (document.all){
document.images.PictureBox4.style.filter="blendTrans(duration=2)";
document.images.PictureBox4.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox4.filters.blendTrans.Apply();
}
document.images.PictureBox4.src = preLoad4[jss4].src;
//if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) {
document.images.PictureBox4.filters.blendTrans.Play();
}
jss4 = jss4 + 1;
if (jss4 > (pss4)) { 
jss4=1;
}
tss4 = setTimeout('runSlideShow4()', SlideShowSpeed);
}

function runSlideShow5(){
if (document.all){
document.images.PictureBox5.style.filter="blendTrans(duration=2)";
document.images.PictureBox5.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox5.filters.blendTrans.Apply();
}
document.images.PictureBox5.src = preLoad5[jss5].src;
//if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) {
document.images.PictureBox5.filters.blendTrans.Play();
}
jss5 = jss5 + 1;
if (jss5 > (pss5)) { 
jss5=1;
}
tss5 = setTimeout('runSlideShow5()', SlideShowSpeed);
}

<!--Add the onload=runSlideShow() event call to the body tag.
//-->

//<body onload=runSlideShow() bgcolor=#000000>

<!--

