<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed4 = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration4 = 4;
// Specify the image files
var Pic4 = new Array();
// to add more images, just continue
// the pattern, adding to the array below


Pic4[0] = 'images/16.gif'
Pic4[1] = 'images/index_16.gif'



// do not edit anything below this line
var t4;
var j4 = 0;
var p4 = Pic4.length;
var preLoad4 = new Array();
for (i4 = 0; i4 < p4; i4++) {
preLoad4[i4] = new Image();
preLoad4[i4].src = Pic4[i4];
}
function runSlideShow4() {
if (document.all) {
document.images.SlideShow4.style.filter="blendTrans(duration4=2)";
document.images.SlideShow4.style.filter="blendTrans(duration4=crossFadeDuration4)";
document.images.SlideShow4.filters.blendTrans.Apply();

}
document.images.SlideShow4.src = preLoad4[j4].src;
if (document.all) {
document.images.SlideShow4.filters.blendTrans.Play();
}
j4 = j4 + 1;
if (j4 > (p4 - 1)) j4 = 0;
t4 = setTimeout('runSlideShow4()', slideShowSpeed4);
}
// 

