<!-- 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 slideShowSpeed8 = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration8 = 3;
// Specify the image files
var Pic8 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic8[0] = 'images/waluj_pro1.jpg'
Pic8[1] = 'images/waluj_pro2.jpg'
Pic8[2] = 'images/waluj_pro3.jpg'
Pic8[3] = 'images/waluj_pro4.jpg'
Pic8[4] = 'images/waluj_pro5.jpg'
Pic8[5] = 'images/waluj_pro6.jpg'
Pic8[6] = 'images/waluj_pro7.jpg'

// do not edit anything below this line
var t8;
var j8 = 0;
var p8 = Pic8.length;
var preLoad8 = new Array();
for (i = 0; i < p8; i++) {
preLoad8[i] = new Image();
preLoad8[i].src = Pic8[i];
}
function runSlideShow8() {
if (document.all) {
document.images.SlideShow8.style.filter="blendTrans(duration=2)";
document.images.SlideShow8.style.filter="blendTrans(duration=crossFadeDuration8)";
document.images.SlideShow8.filters.blendTrans.Apply();
}
document.images.SlideShow8.src = preLoad8[j8].src;
if (document.all) {
document.images.SlideShow8.filters.blendTrans.Play();
}
j8 = j8 + 1;
if (j8 > (p8 - 1)) j8 = 0;
t8 = setTimeout('runSlideShow8()', slideShowSpeed8);
}
// 