// JavaScript Document
<!--
<!-- 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 slideShowSpd = 1600;
// Duration of crossfade (seconds)
var crossFadeDur = .3;
// Specify the image files
var Pix = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pix[0] = 'images/Munchie_Mug_Pink.jpg'
Pix[1] = 'images/Munchie_Mug_Blue.jpg'
Pix[2] = 'images/Munchie_Mug_Yellow.jpg'

// do not edit anything below this line
var u;
var k = 0;
var q = Pix.length;
var preld = new Array();
for (h = 0; h < q; h++) {
preld[h] = new Image();
preld[h].src = Pix[h];
}
function runSlideShw() {

document.images.SlideShw.src = preld[k].src;

k = k + 1;
if (k > (q - 1)) k = 0;
u = setTimeout('runSlideShw()', slideShowSpd);
}
//  End -->
