<!-- 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 slideShowSpeed7 = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration7 = 3;
// Specify the image files
var Pic7 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic7[0] = 'images/waluj1.jpg'
Pic7[1] = 'images/waluj2.jpg'
Pic7[2] = 'images/waluj3.jpg'
Pic7[3] = 'images/waluj4.jpg'
Pic7[4] = 'images/waluj5.jpg'
// do not edit anything below this line
var t7;
var j7 = 0;
var p7 = Pic7.length;
var preLoad7 = new Array();
for (i = 0; i < p7; i++) {
preLoad7[i] = new Image();
preLoad7[i].src = Pic7[i];
}
function runSlideShow7() {
if (document.all) {
document.images.SlideShow7.style.filter="blendTrans(duration=2)";
document.images.SlideShow7.style.filter="blendTrans(duration=crossFadeDuration7)";
document.images.SlideShow7.filters.blendTrans.Apply();
}
document.images.SlideShow7.src = preLoad7[j7].src;
if (document.all) {
document.images.SlideShow7.filters.blendTrans.Play();
}
j7 = j7 + 1;
if (j7 > (p7 - 1)) j7 = 0;
t7 = setTimeout('runSlideShow7()', slideShowSpeed7);
}
// 