// 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 Picture7 = new Array(); // don't change this

Picture7[1]='images/subcats/308_slide1.jpg';
Picture7[2]='images/subcats/308_slide2.jpg';
Picture7[3]='images/subcats/308_slide3.jpg';






// =====================================
// Do not edit anything below this line!
// =====================================

var tss7;
var iss7;
var jss7 = 1;
var pss7 = Picture7.length-1;

var preLoad7 = new Array();
for (iss7 = 1; iss7 < pss7+1; iss7++) {
preLoad7[iss7] = new Image();
preLoad7[iss7].src = Picture7[iss7];
}


function runSlideShow7(){
if (document.all){
document.images.PictureBox7.style.filter="blendTrans(duration=2)";
document.images.PictureBox7.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox7.filters.blendTrans.Apply();
}
document.images.PictureBox7.src = preLoad7[jss7].src;
//if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) {
document.images.PictureBox7.filters.blendTrans.Play();
}
jss7 = jss7 + 1;
if (jss7 > (pss7)) { 
jss7=1;
}
tss7 = setTimeout('runSlideShow7()', SlideShowSpeed);
}



<!--Add the onload=runSlideShow() event call to the body tag.
//-->

//<body onload=runSlideShow() bgcolor=#000000>

<!--

