<!-- 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 slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 1000;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images/1-1.jpg'
Pic[1] = 'images/2-1.jpg'
Pic[2] = 'images/3-1.jpg'
Pic[3] = 'images/4-1.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
// 

// second starts

<!-- 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 slideShowSpeed1 (milliseconds)
var slideShow1Speed1 = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration1 = 400;
// Specify the image files
var Pic1 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic1[0] = 'images/1-2.jpg'
Pic1[1] = 'images/2-2.jpg'
Pic1[2] = 'images/3-2.jpg'
Pic1[3] = 'images/4-2.jpg'

// do not edit anything below this line
var t1;
var j1 = 0;
var p1 = Pic1.length;
var preLoad1 = new Array();
for (i = 0; i < p1; i++) {
preLoad1[i] = new Image();
preLoad1[i].src = Pic1[i];
}
function runSlideShow1() {
if (document.all) {
document.images.SlideShow1.style.filter="blendTrans(duration=2)";
document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration1)";
document.images.SlideShow1.filters.blendTrans.Apply();
}
document.images.SlideShow1.src = preLoad1[j1].src;
if (document.all) {
document.images.SlideShow1.filters.blendTrans.Play();
}
j1 = j1 + 1;
if (j1 > (p1 - 1)) j1 = 0;
t1 = setTimeout('runSlideShow1()', slideShow1Speed1);
}
// 

// third starts

<!-- 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 slideShowSpeed2 (milliseconds)
var slideShow2Speed2 = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration2 = 400;
// Specify the image files
var Pic2 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic2[0] = 'images/1-3.jpg';
Pic2[1] = 'images/2-3.jpg';
Pic2[2] = 'images/3-3.jpg';
Pic2[3] = 'images/4-3.jpg';


// do not edit anything below this line
var t2;
var j2 = 0;
var p2 = Pic2.length;
var preLoad2 = new Array();
for (i = 0; i < p2; i++) {
preLoad2[i] = new Image();
preLoad2[i].src = Pic2[i];
}
function runSlideShow2() {
if (document.all) {
document.images.SlideShow2.style.filter="blendTrans(duration=2)";
document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration2)";
document.images.SlideShow2.filters.blendTrans.Apply();
}
document.images.SlideShow2.src = preLoad2[j2].src;
if (document.all) {
document.images.SlideShow2.filters.blendTrans.Play();
}
j2 = j2 + 1;
if (j2 > (p2 - 1)) j2 = 0;
t2 = setTimeout('runSlideShow2()', slideShow2Speed2);
}
// 
